superfish breaks when creating a subtheme.

compass create test_theme -r aurora --using aurora

enable the test_theme
enable superfish
configure a menu block with a multi level menu
child menus below level 2 don't display properly

this seems to only be broken in chrome (Version 32.0.1700.107) and Safari (Version 7.0.1)
but the menu displays properly in firefox (version 26)

not sure how to fix this, or exactly what is breaking... it is fine in the aurora base theme, but broken in the compass subtheme

thanks,
- nick

Comments

iamcarrico’s picture

Generally, Snugug and I are against using drop-in solutions for theming, instead desiring custom solutions for a more robust responsive designs. Snugug has a more complete response here: #2133805: Superfish-ish solution to bring us up to Bootstrap

That being said, if you want to debug the issue, we would be happy to review patches-- as long as it does not affect the overall desire of the theme I would be happy to commit it.

iamcarrico’s picture

Status: Active » Postponed
BiigNiick’s picture

cool, that sounds like a reasonable idea.

thanks for the response,
- nick

BiigNiick’s picture

Status: Postponed » Closed (works as designed)

sorry i didn't update this earlier.

the problem was with the css in superfish module. i needed to add this to get it to work in Chrome

.sf-menu .sf-navbar ul { overflow: visible !important; }

jastraat’s picture

I had to add slightly different CSS:

.sf-menu .sf-navbar ul,
.sf-menu ul {
overflow: visible !important;
}