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.
Fusion Tranquil - Superfish Dropdown Menus - Overlap
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
Firefox 3.6.3 on Windows 7
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;
}