Ok so I want to use the hoverbox css gallery to display images on my site. The problem is that I put the hover box li elements into a div class so I can have control over where I place them, but when I put the <li> elements into the div, they overlap what is underneath them, such as another section for something else. Whats the deal with that? It seems like the positioning properties of hoverbox are conflicting with my floated layout. Does anyone know how to "tame" hoverbox so you can just add a small picture gallery into another section of your site, or into another div element ?
example code:
<div id="hoverboxcontainer">
<ul class="hoverbox">
<li>
<a href="#"><img src="img/photo01.jpg" alt="description" /><img src="img/photo01.jpg" alt="description" class="preview" /></a></li>
<li>
<a href="#"><img src="img/photo02.jpg" alt="description" /><img src="img/photo02.jpg" alt="description" class="preview" /></a></li>
</ul>
</div> <!--close hoverboxcontainer-->
<div id="asectionbelow">
blah blah blah
</div>
* hover box elements seem to overlap my div below * Any help, ideas, greatly appreciated!
example code:
<div id="hoverboxcontainer">
<ul class="hoverbox">
<li>
<a href="#"><img src="img/photo01.jpg" alt="description" /><img src="img/photo01.jpg" alt="description" class="preview" /></a></li>
<li>
<a href="#"><img src="img/photo02.jpg" alt="description" /><img src="img/photo02.jpg" alt="description" class="preview" /></a></li>
</ul>
</div> <!--close hoverboxcontainer-->
<div id="asectionbelow">
blah blah blah
</div>
* hover box elements seem to overlap my div below * Any help, ideas, greatly appreciated!








