Read a good article on using Twitter Bootstrap Dropdown Menus…
Using Twitter Bootstrap Dropdown Menus
Reply
Read a good article on using Twitter Bootstrap Dropdown Menus…
Doing some research into CSS based drop down menus. Found 25 Scripts for Dropdown Navigation Menus. The ones I like the most are All Levels Navigational Menu and particularly jQuery Multi Level CSS Menu #1.
I used the CSS :last-child and :after selectors to hack the content: property on my menu lists. Basically items in the menu have a pipe ‘|’ between them, except no pipe before or after the list. I did that in CSS with:
#menu li:after { content: ' | '; } #menu li:last-child:after { content: ''; }