I am trying to create a little filmstrip with images. I want to be able to scroll horizontally to view all of the images.
I have:
<div class="gallery">
<div class="back" style="opacity: 0.6;"></div>
<div class="thumbs">
<ul class="ad-thumb-list">
<li>
<img id="thumb01" src="../jpeg/thumbnails/01.jpg" title="page 1"/>
</li>
(I have many <li>'s listed)
</ul>
</div>
<div class="forward" style="opacity: 0.6;"></div>
</div>
I have css stylizing the whole thing, and I have the display:hidden on the thumbs div. I just need the arrows to function but I have no idea what type of code to use. Any help would be great!