ibn Ezra wrote:
> IE 6 causes the  
> right div to float down past the left hand sidebar as I discovered at  
> the library last night.
> http://www.vschess.org/2007-championships/index.aspx
> http://www.vschess.org/_stylesheets/base.css
>
> -iE
>
>   
I guess it is a box-model problem. Compliant browsers (and even ie/7.0) 
include the horizontal padding (30px left and right=60px) in the overall 
width of 535px.
Try subtracting that 60px padding from the width (535px less 60px= 
475px) and feed it to ie/6 (the star selector will not be seen by 
ie7.0). Put it at the very bottom of your style sheet; or, feed it to 
within a conditional comment [1]:
* html #content-wrapper #text {
    width: 475px;
    background-color: fuchsia /*test color*/;
}
[1] <http://www.satzansatz.de/cssd/onhavinglayout.html#hackmanagement>
Regards,
~dL

-- 
http://chelseacreekstudio.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to