Sometimes a white bar appears above the suckerfish menu. This happens on Firefox and Safari but it does not happen on every page. As far as I can tell, it only happens on the homepage.

Additionally, the suckerfish menu only works about 1/4 times. There isn't specific pages it doesn't work on, it seems random.

I'm using Drupal 6.10.

CommentFileSizeAuthor
#7 screenshot_034.png75.18 KBillepic
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Corey Smith’s picture

can you please provide a url for this. I can't reproduce this on our test sites. We have been using this theme on a few of our sites for sometime and haven't seen this problem.

Corey Smith’s picture

Status: Active » Postponed (maintainer needs more info)
OneTwoTait’s picture

Sure. I PM'd you a URL and login info. :) Feel free to change the theme on there or play around this evening - nobody is looking at this site yet.

Corey Smith’s picture

I have logged in and changed the theme for the username you gave me. We'll take a look... hopefully by the first of the week (we're really busy right now) and we'll see what we can figure out.

Tiggah’s picture

I have the same Problem, but only on the frontpage. Found no reason/solution for this yet.

Corey Smith’s picture

Assigned: Unassigned » aharl
illepic’s picture

FileSize
75.18 KB

Subscribing. See screenshot for the elusive white bar (on front page only, as reported)

illepic’s picture

Status: Postponed (maintainer needs more info) » Needs review

Got it. I was able to fix with a css override of:

#suckerfishmenu .content{margin:0px;}

A 'content' class is wrapping the menu within the suckerfish block:

<div class="content">
  <ul class="menu">
     <li class="leaf first active-trail"><a class="active" title="" href="/">Home</a></li>
     <li class="expanded"><a title="" href="/company/about">About</a><ul class="menu"><li class="leaf first"><a title="" href="/company/about/our-staff">Our Staff</a></li>
    etc etc
  </ul>
</div>

This allows us to kill that margin added to the content div (on the front page only, it seems). I don't know if this counts as a patch or a work around :)

aharl’s picture

Status: Needs review » Fixed

added

#suckerfishmenu .content{margin:0px;}

to the style.css file

Status: Fixed » Closed (fixed)

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

Ingumsky’s picture

Status: Closed (fixed) » Active

Hm... There's the same issue occuring at another region. When I try to add a manually created block (with set of links) to the footer the white bar appears. How can I remove it? Thank you.

Ingumsky’s picture

And that's my fix based on illepic's #8
Please add it to style.css.

#footer .content {
   margin:0px;
}

#footer .content p {
   margin-bottom:0px;
   margin-top:0px;
}
jrglasgow’s picture

Status: Active » Fixed

this has been committed

Status: Fixed » Closed (fixed)

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

jcropley’s picture

I am having issues with the mysterious white bar as well. I tried putting the margin:0px; thing in, and it still isn't working.

glenwoodcc.org/drupal/drupalnew

thanks for any help!