jybo71 0 Posted December 19, 2014 Report Share Posted December 19, 2014 Hello I am using bootstrap as a beginner. I try to make a dropdown menu on several level but it don't work. My script : <body> <div class="container-fluid"> <ul class="nav nav-pills nav-stacked"> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" >Menu 1<span class="caret"></span></a> <ul class="dropdown-menu"> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" >Menu 1-1<span class="caret"></span></a> <ul class="dropdown-menu"> <li>menu1-1-1</li> <li>menu1-1-2</li> </ul> <li>menu 1-2</li> <li>menu 1-3</li> </ul> </li> </ul> </div> </body> Is it possible to do that with bootstrap ? or do I choose an other way .... Thanks Quote Link to post Share on other sites
niche 140 Posted December 19, 2014 Report Share Posted December 19, 2014 Please post your css Quote Link to post Share on other sites
Ingolme 1,027 Posted December 19, 2014 Report Share Posted December 19, 2014 Please post your css You must not be familiar with bootstrap. Bootstrap is a CSS framework that abstracts the developer from the CSS. Learn more about it here: http://getbootstrap.com/ The person developing the page doesn't necessarily have to know what CSS bootstrap is using for each of the classes. Quote Link to post Share on other sites
tejasamrute 6 Posted December 22, 2014 Report Share Posted December 22, 2014 http://bootsnipp.com/snippets/featured/multi-level-navbar-menu Check this link Quote Link to post Share on other sites
dsi-interactive 0 Posted January 4, 2015 Report Share Posted January 4, 2015 (edited) I learning Bootstrap as well. It looks like the last <li class="dropdown"> has not been closed: </li> ?? Edited January 4, 2015 by dsi-interactive Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.