Problem with Submenus and Galleria

I created some pulldown menus using the “Pure CSS Menu” website for my website called “[URL=“http://www.espermansion.net”]Esper Mansion” and they work fine on the other pages, but on the Galleria subpages for the “Galleria Rune” section of the website, I’m having a problem in that even though the pulldown menus work fine in the pages, the rest of the pulldown menus get hidden by the image gallery section of the pages which is done using the [URL=“http://galleria.aino.se/”]“Galleria” image gallery framework.

Galleria 1 - Fanart

Galleria 2 - Official Artwork

Galleria 3 - In-Game Panel Artwork

What can I do to fix the problem so that they show OVER the image gallery instead of UNDER them.

You could try something like

ul.pureCssMenu ul {
  left: -1px;
  position: absolute;
  top: 98%;
  [COLOR="Red"]z-index: 10;[/COLOR]
}

The .galleria-image div has a z-index of 1, so even z-index:2 in the example above would work.

ralph.m, I’ll give your advice a try! :smiley: