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
You can use float: left; on the lis instead of display: inline;.
float: left;
li
display: inline;
Just remember to also use overflow: hidden; on the parent element (the ul).
overflow: hidden;
ul
Another option would be to use: display: inline-block, but I'm not 100% sure about the browser support.
display: inline-block