I am creating a mega menu in bootstrap, and I wanted to display in the cleanest easiest method, 4 rows ( or more ) but 4 is good, menu items.
I made a fiddle here http://jsfiddle.net/ozzy/cX5DU/
The issue seemingly is that the li's are rendered across the page in the order read via html..
Is there a way of ordering the columns, so that the li's display in numeric order vertically ?
Tagged as jquery because I think jquery may be the saviour here.
css is:
ul{ width:760px; margin-bottom:20px; overflow:hidden; border-top:1px solid #ccc; }
li{ line-height:1.5em; border-bottom:1px solid #ccc; float:left; display:inline; }
#double li { width:50%;} /* 2 col */
#triple li { width:33.333%; } /* 3 col */
#quad li { width:25%; } /* 4 col */
#six li { width:16.666%; } /* 6 col */
uland put them one after another – zerkms Jul 11 '12 at 2:04ulin your source html as in the fiddle and then create the extraulelements dynamically with JS (with or without jQuery). – nnnnnn Jul 11 '12 at 2:17