Can't get search box to align correctly using Bootstrap

qwerasdf1999

New Member
I'm trying to move this search box towards the left side so it's pushing against the "Latest Artwork" and comics section... instead of floating towards the right side.I also need to maintain the search box such that when I search for something and the search box expands, it doesn't push the "Latest" and "Hot" sections down. As it is, it's not doing that, so that's good... \[code\] <div class="row-fluid"> <div class="span8 offset2"> <div class="row-fluid"> <div class="span5"><img src="http://stackoverflow.com/questions/14596734/images/highlighted comic.png"/></div> <div class="span4"><img src="http://stackoverflow.com/questions/14596734/images/latest artwork.png"/></div> </div> <div class="row-fluid"> <div class="comicDisplay"> <div class="well"> <div class="row-fluid"> <div class="span7"><h3>Latest</h3> <?php include 'scripts/paging.php'; ?></div> <div class="span2"><h3>Hot</h3> <?php echo hot(7, $site); ?></div> </div> </div> </div> </div> </div> <div class="span2"> <?php include 'include/search_field.php'; ?> </div></div><!--End top row fluid-->\[/code\]
jzZmT.png
Any help would be appreciated!
 
Back
Top