ul#nav {background:url(img/nav-bg.jpg) repeat-x top #C18E00;}
ul#nav li {display:block;float:left;}
Because I have floated the list items they are taken out of the flow of the page so I then lose my background image from the UL.
I know I can set a height on my ul#nav but I will be using text in the menu so It needs to be able to expand..
I worked out you can use display:inline-block; instead of using floats but that doesn't work in IE (
Is there a way around this, or a better technique ?
Help



















