I have a problem using shadowbox inside a list. The image that im trying to use with shadowbox, is inside an li tag. I have tried to implement shadowbox on an , that is outside the list, and that is working correctly.
HTML:
<div id="gallery" class="content-2">
<nav id="filter"></nav>
<section id="container">
<ul id="stage">
<li data-tags="Print Design"><a rel="shadowbox" href="_img/shots/1.jpg"><img src="_img/shots/1.jpg" alt="Illustration" /></a></li>
<li data-tags="Logo Design,Print Design"><a rel="shadowbox" href="_img/shots/2.jpg"><img src="_img/shots/2.jpg" alt="Illustration" /></a></li>
</ul>
</section>
</div>