Your menus need background:
Code:
.menu, .menu * {
background-color: #6b6b6f;
}
But that will slightly alter their apparent dimensions. You could use a background image, it could be a transparent .gif image (if you have or can get/make one):
Code:
.menu, .menu * {
background-image: url(transparent.gif);
}
or even a missing image:
Code:
.menu, .menu * {
background-image: url(notThere123092.gif);
}
This last will raise eyebrows in Safari though. It will say there was a problem loading the page. But you could use IE specific conditional comments to make this only apply to IE, example for an on page stylesheet:
HTML Code:
<!--[if lt IE 8]>
<style type="text/css">
.menu, .menu * {
background-image: url(notThere123092.gif);
}
</style>
<![endif]-->
Bookmarks