twitter bootstrap - keeping a navbar ul horizontal on small screens -
i have bootstrap navbar has 2 ul's in it.
the first ul hides collapse menu on small screens.
the second ul still visible.
the problem i've run into, second ul displays vertically. can't seem override display horizontally. keep inspecting css , nothing i've found seems control that.
http://www.bootply.com/render/121627
( of css borrowed // twitter bootstrap 3 navbar navbar-right outside navbar-collapse )
to clarify:
this see on <760px wide screens:
[ brand ] -item1 [---] -item2 this want see:
[ brand ] -item1 -item2 [---]
the solution target ul>li on navbar.
.navbar-right > ul > li { float:left; }
Comments
Post a Comment