Fusion Tranquil - Superfish Dropdown Menus - Overlap

Please register or log in to post to the forums
3 replies [Last post]
advauto
advauto's picture
Offline
Joined: 2010-04-20
Posts: 1
Fusion Tranquil - Superfish Dropdown Menus - Overlap

I'm currently using the 6.x-1.1 version of Fusion Tranquil.
The Horizontal Superfish Menu (Primary Links) drop-down is overlapped by the Title and various other text elements of any given page.

Here is a screenshot for illustration.

sheena
TopNotchThemer
sheena's picture
Offline
Joined: 2010-02-09
Posts: 1600

advauto,

What browser are you using? This is not happening for me in Firefox or Safari.

try adding this CSS to your local.css file:

ul.sf-menu li.sfHover ul.menu {
  position: absolute;
  z-index: 100;
}

If that doesn't fix the issue, you may want to open an issue for us so we can investigate whether this is a bug in the theme.

Thanks!
Sheena

Anonymous
Anonymous's picture

Firefox 3.6.3 on Windows 7

jeremy
jeremy's picture
Offline
Joined: 2009-06-09
Posts: 740

I'm only seeing this issue with the overlapping of the content and the primary menu on the admin pages. I tracked it down to this in Fusion Core:

.page-admin .content-inner-inner {
  z-index: 10;
}

So try adding this to your "local.css" file for your theme (Tranquil) to see if it fixes the overlapping issue.

.page-admin .content-inner-inner {
  z-index: 9;
}