I\'m having an issue with a menu un-ordered list. Whereby the list items are over running the and boundaries and only starting t
boundaries and only starting t
Do display: block; always... Never do display: inline; or display: inline-block;
display: inline;
display: inline-block;
To fix the Unordered List from pouring out of the DIV, try going into the CSS and apply this:
ul { list-style-position: inside; }