Your page uses way too much absolute positioning. Layer 5 is covering the bottom part of the gallery. You can't see that because that part of Layer 5 is transparent. Move Layer 7 to the end:
Code:
<!-- This is 'imagetica logo' -->
<div id="Layer-4" >
<img src="Layer-4.png" width="365" height="87" alt="imagetica logo" /></div>
</div>
</div>
</div>
<!-- This is 'animacao' -->
<div id="Layer-7" >
<div id="simplegallery1"></div>
</div>
</body>
</html>
In your stylesheet, adjust its top and left:
Code:
/* You named this layer animacao */
#Layer-7 {
position: absolute;
left: 496px;
top: 230px;
width: 525px;
height: 253px;
z-index: 7;
}
Bookmarks