I’m using the bootstrap css framework and have built a horizontal menu. It works great in all browsers except IE7. I’ve narrowed it down to the use of the max-width property which prevents the background from showing under IE7. Example below (view in IE7).
What would be the best approach it fix this?
What is the purpose of the
menu-containerdiv? It is this that is over-riding the colour in IE7.Remove the
menu-containerdiv and it will work ( http://jsfiddle.net/dZRcS/4/ )If you need to keep the
menu-containerdiv then remove the background-color from it as it is never seen ( http://jsfiddle.net/dZRcS/3/ )