|
May be the problem is with the negative margins with IE. Try adding position:relative on these styles (you can replace them with the ones listed below):
.menu h3 { margin: -10px -10px 10px -10px; padding: 3px 10px; font-size: 14px; font-weight: bold; background-color: #cbb370; color: #ffffff; position:relative;}
.menu li a { display: block; margin: 0px -10px; padding: 3px 10px; color: #76633c; position:relative;}
.menu .rss { margin-top: -5px; font-size: 18px; font-weight: bold; position:relative;}
And sorry for the previous post, try using this for style main:
#main { min-height: 400px; height: 400px; overflow: visible; margin: 0px; padding: 15px; }
I think there are more problem styles but lets' see first if this will help
|