Here is a link to the page:
http://www.studiomoon.com/anselmo_test/home.html
Here is a link to the style sheet:
http://www.studiomoon.com/anselmo_test/css/anselmo.css
I'm building a site that must function correctly in all browsers. In Internet Explorer on the Mac the main content layer changes it's position when the browser window changes size. In all other browsers/platforms the layer remains fixed. This is the last QA issue that I have with this site so please help if you can.
I am using a hack to position the layer in IE/Mac. The first "content_layer" style is the one that the IE/Mac browser reads. The second style is used by other browsers.
Is there something I can add to "content_layer" in order to keep the layer position fixed?
#content_layer {
position: absolute;
width:475px;
height:115px;
z-index:1;
visibility: visible;
margin-left: 211;
margin-top: 155;
font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
font-size: 10px;
line-height: 14px;
font-weight: normal;
color: #000000;
letter-spacing: .5px;
}
/* hidden from IE mac \*/
#content_layer {
position: absolute;
width:475px;
height:115px;
z-index:1;
visibility: visible;
margin-left: 211;
margin-top: 96;
font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
font-size: 10px;
line-height: 14px;
font-weight: normal;
color: #000000;
letter-spacing: .5px;
}
/* end hack */



Reply With Quote



Bookmarks