Nothing to do with css. Well you might be able to cobble something together in css to get those rounded corners in IE 7. More likely it would require javascript and/or images as well as css. However, the font is identical. It's the rendering of the font that's different.
By default most if not all modern browsers on the PC platform render fonts with anti-aliasing qualities. In IE this is called ClearType. It uses the same basic code engine as do the the Active X 'css' filters - including the one responsible for approximating what the opacity style property does in all other modern browsers.
To make a long story short - the two are incompatible. You can have partially opaque text or ClearType text, not both. The use of the alpha opacity filter is coded into the script, so cannot be removed by editing the css.
You can get rid of the highlighted (from the shmtestforums.uphero.com/menu/css/style.css file):
Code:
#container {
display:block;
position: absolute;
padding:0;
width:100%;
height:210px;
background:#fff;
top:50%;
margin:-100px 0 0 0;
border:solid #E69623;
border-width:3px 0 3px 0;
opacity: 0.90;
-moz-opacity: 0.90;
filter: alpha(opacity=90);
}
But that will mess other stuff up and only affects the bottom level - what you see before anything is activated.
Bookmarks