I'm having trouble with a 1px discrepancy when giving my wrapper a background image. The right side of my container is sticking out 1 pixel farther than the inner div's. This seems to be a problem only in ie. Here is a link to my page. www.para-media.net. CSS below.
***********************
/*layout.css*/
body {
text-align:center;
margin: 0px auto;
}
#wrapper {
text-align: left;
margin: 0px auto;
padding: 0px;
border:0;
width: 760px;
background: url("/path/to/your/background_cols.gif") repeat;
}
#header {
margin: 0 0 0px 0;
background: yellow;
}
#side-a {
float: left;
width: 200px;
}
#side-b {
float: right;
width: 150px;
}
#content {
float: left;
width: 53%;
}
#footer {
clear: both;
background: #A2A2A2;
}
***************************
any fixes for ie would be greatly appreciated.



Reply With Quote

Bookmarks