Two lines of suckerfish menus
tamhas - January 31, 2009 - 02:01
| Project: | litejazz |
| Version: | 6.x-1.7 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | postponed (maintainer needs more info) |
Jump to:
Description
With Drupal 6.9 we have just started using the LiteJazz theme on one of our sites and we are ending up with two lines of suckerfish menus. There are only three menu items at this point, so they take up very little room, but they end up with the lowest weight item on the first line and the other two items on the other line. See http://www.reviewsbytdev.com to see it in action. We don't have this issue with other sites and themes from the same code base, but this is the only site on which we are using LiteJazz.

#1
Ah, just discovered that it is a FireFox thing ... looks fine in IE. Still want a fix, though!
#2
Looks like you're using a different theme now. I'll try to replicate, but let me know if you put it back up again.
#3
I noticed this problem as well. Here's my fix. Following these lines in litejazz's style.css
#primary a {font-weight:bold;
display:block;
float:left;
padding:0px 14px 0px 14px;
margin: 0px 1px 0px 0px;
font-size: 95%;
}
insert this
/* Firefox fix */@-moz-document url-prefix()
{
#primary li { display:inline-table; padding:0px 0px 0px 0px; margin:0; float:left; }
}
/* end Firefox fix */
#4
I encountered the same issue, using Firefox 3.0.6 with four menu items (Home, Blog, Dowloads, Contact) home was on the first line and properly rendered while the other menus were on the second line and just show with a black bakground, no traslucid effect.
I applied the fix proposed by ejwensley and it does work.
It works ok in IE 7.
#5
perhaps a screenshot would help us understand what the problem is