Forum Moderators: not2easy
Is there anyway to have the UL push the footer and any other consequential content down (or up) as the browser window size changes?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The CSS - >
.holder {
width:75%;
margin:0px auto;
background-image:url(../../images/thumbnails-bg.png);
background-position:top;
background-repeat:repeat-x;
}
.thumbnailul {
padding:10px auto;
}
.thumb-small {
width:160px;
height:160px;
display:block;
float:left;
background-repeat:no-repeat;
background-position:center;
}
The HTML ->
<div class="holder">
<ul class="thumbnailul">
<li class="thumb-small thumb1"><a href="pictures/1.jpg" rel="lightbox[group]"></a></li>
<li class="thumb-small thumb2"><a href="pictures/2.jpg" rel="lightbox[group]"></a></li>
<li class="thumb-small thumb3"><a href="pictures/3.jpg" rel="lightbox[group]"></a></li>
<li class="thumb-small thumb4"><a href="pictures/4.jpg" rel="lightbox[group]"></a></li>
<li class="thumb-small thumb5"><a href="pictures/5.jpg" rel="lightbox[group]"></a></li>
<li class="thumb-small thumb6"><a href="pictures/6.jpg" rel="lightbox[group]"></a></li>
</ul>
</div>
<div class="footer">Content</div>
Thank you for any help :)