I am using a button to toggle the state of images from "hidden" to "show". I can get the images to show, but when they do, they appear in a verticl alignment. I wish for the images to show themselves horizontally instead of vertically.
my markup is as follows
<div class="left ch-ad-profile-left eleven columns">
<button>
<div class="boxes-212x100">
<h4 class="blue">Parked Ads</h4>
<div class="status-l">
<p>Updates</p>
<center><span>18</span></center>
</div>
<div class="status-r">
<p>Removed</p>
<center><span>3</span></center>
</div>
<div class="clearfix"></div>
</div>
</button>
<script>
$("button").click(function () {
$(".boxes-112x100-1").slideToggle("slow");
});
</script>
<!--end class=boxes-212x100-->
<div class="boxes-112x100-1" style="display:none;">
<img src="../../../images/placeholder-small.png" class="" alt="">
</div>
<div class="boxes-112x100-1" style="display:none;">
<img src="../../../images/placeholder-small.png" class="" alt="">
</div>
<div class="boxes-112x100-1" style="display:none;">
<img src="../../../images/placeholder-small.png" class="" alt="">
</div>
<div class="boxes-112x100-1" style="display:none;">
<img src="../../../images/placeholder-small.png" class="" alt="">
</div>
<div class="boxes-112x100-1" style="display:none;">
<img src="../../../images/placeholder-small.png" class="" alt="">
</div>
<div class="clearfix"></div>
</div>
So how can I tell toggle to make the images appear in a horizontal line instead of a verticle line?