Hi Jeff,

I'm using Drupal 6.16, Adaptivetheme 2.2, Superfish module 1.6 vertical menu type. Can you help me out why I keep getting a gap between "vertical menu" and submenu (see attached pix). I don't have this gap on Bluemarine theme. Thanks.

CommentFileSizeAuthor
#1 superfish.jpg39.71 KBfranzkewd
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

franzkewd’s picture

FileSize
39.71 KB

Retry the attachment here: http://drupal.org/files/superfish.jpg

Juan C’s picture

I do have similar situation using Nice Menus on latest Adaptivetheme dev.

Jeff Burnz’s picture

Adaptivetheme does aggressive things with lists to flatten the playing field for all lists, so they are consistent - for item lists, menus and so on.

Both are very easy to fix, neither of these modules set margin or padding so any override of these will seriously affect how they look.

You can add this to your themes, respectively, either to the very end of starter.css or in theme.css.

/* Reset for Nice Menus. */
ul.nice-menu,
ul.nice-menu ul,
ul.nice-menu li {
margin:0;
padding:0;
}
/* Reset for Superfish module. */
ul.sf-menu,
ul.sf-menu ul,
ul.sf-menu li {
margin:0;
padding:0;
}

I think I'll include this in the next version since I use both these modules quite a bit.

franzkewd’s picture

Status: Active » Fixed

Thanks Jeff for prompt answer and great theme.

Work like a charm. I changed the status as fixed.
For those with similar situation, don't forget to run update.php to see the effect.

Status: Fixed » Closed (fixed)

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