I am putting together a site using the Acquia Marina theme and have installed the thickbox module to display all images. The roblem is that when selected, the main menu appears on top so some of the areas of the images are hidden. Is there any way to stop this from happening you can see what I mean at www.mwassociation.co.uk/test

Comments

dezen’s picture

This is due to the high z-index of the div-element containing the menu, if you look in the style.css at the proper id of your div-element, there should be [z-index:600], try lowering or even removing this index. A helpful tool for finding the right id is http://getfirebug.com/

foxtrotcharlie’s picture

Putting a z-index:100 in the #header-bottom declaration fixed the issue for me (at least in firefox and IE6 & IE7):

#header-bottom {
  margin: 0 auto;
  position: relative;
  width: 960px;
  z-index: 100;  
}

Charles

www.parkroad.co.za