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.

CommentFileSizeAuthor
#6 MenuError.pdf30.48 KBfymbscu
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

tamhas’s picture

Ah, just discovered that it is a FireFox thing ... looks fine in IE. Still want a fix, though!

roopletheme’s picture

Status: Active » Postponed (maintainer needs more info)

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.

ejwensley’s picture

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 */
ldsandon’s picture

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.

GiorgosK’s picture

perhaps a screenshot would help us understand what the problem is

fymbscu’s picture

FileSize
30.48 KB

I'm having the same issue, currently in a local MAMP install using latest Firefox 2 version. ejwensley's fix worked for me. Have attached a pdf screenshot of the two-line display error, if that helps.

Kisugi Ai’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

closed -- issue fixed for 2 weeks with no activity.