The issue basically boils down to the width of each A element inside the menu being set to "auto". IE7 requires an explicit width. Inside the .css file, try adding the line in red to the following code:
Code:
.glossymenu a.menuitem{
background: black url(glossyback.gif) repeat-x bottom left;
font: bold 14px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
color: white;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
width: auto;
*width:100%; /* targets IE6 and 7 */
padding: 4px 0;
padding-left: 10px;
text-decoration: none;
}
Bookmarks