Please be more specific about the problem. It looks to me like the subnav class is just a little to high up. Perhaps a little too thick vertically as well. That's checking in IE 9's IE 7 mode. In IE 9's IE 8 mode it looks fine.
If that's the problem you can do a suplemental stylesheet for IE 7. From the source code of the page, addition highlighted:
Code:
<!-- CSS for Tab Menu #3 -->
<link rel="stylesheet" type="text/css" href="_css/solidblocksmenu.css" />
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="_css/solidblocksmenu_ie7.css" />
<![endif]-->
<link href="_css/main.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="_img/favicon.ico" type="image/x-icon" />
<link rel="icon" href="_img/favicon.ico" type="image/x-icon" />
<!-- InstanceParam name="currentTab" type="number" value="0" -->
Make a file called solidblocksmenu_ie7.css and in it put these styles:
Code:
ul.subnav {
padding: 0 0 8px 0;
margin-top: 12px;
}
Put it in the _css folder.
Bookmarks