Hi,
I'm using superfish to create a NavBar and is working correctly.
The second line of menu are horizontal, one item near the other.
Instead the third line of menu are vertical, each item under the other.
Anyone know the way to have also the third line like the second?

Comments

bserem’s picture

Issue summary: View changes

This should do it more or less:

.sf-navbar ul li ul {                                                                                                         
  width: 100% !important;                                                                                                     
}                                                                                                                             
.sf-navbar ul li ul li {                                                                                                      
  float: left;                                                                                                                
  width: auto;                                                                                                                
}                                                                                                                             
                                                                                                                              
.sf-navbar li li {                                                                                                            
  position: static;                                                                                                           
} 

The trick is in the !important :D
If you prefer to avoid it, you should disable supersubs.

geek.geek’s picture

Status: Active » Closed (cannot reproduce)