Quote:
|
Originally Posted by blogman9
but, what I must change in CSS ?
|
In style2.css find this:
PHP Code:
#content
{
background:#fff;
float:left;
padding:15px 10px;
width:555px;
border-right:1px solid #999999;
color:#000;
}
change it to this:
PHP Code:
#content
{
background:#fff;
float:left;
padding:15px 10px;
width:552px;
border-right:1px solid #999999;
color:#000;
}
then in the same stylesheet, style2.css, find this:
PHP Code:
#sidecontent
{
margin:0;
padding:15px 0 0 0;
float:right;
width:164px;
}
change it to this:
PHP Code:
#sidecontent
{
margin:0;
padding:15px 0 0 0;
float:right;
width:167px;
}
that may or may not work. I cannot seem to replicate your problem on my version of IE, although, I'm curious why you @import the 2 stylesheets and link to them for print media? Why not have a single print media sheet? What's up with that?
...