From 9730caf674f52c433dfa2792863f8f532603df90 Mon Sep 17 00:00:00 2001 From: Matthias Mees Date: Wed, 19 Sep 2007 10:33:04 +0000 Subject: [PATCH] BP: Fix for 2col s-b layout in IE (any version). --- templates/bulletproof/ie5.css | 8 ++++++++ templates/bulletproof/ie6.css | 7 +++++++ templates/bulletproof/ie7.css | 7 +++++++ 3 files changed, 22 insertions(+) diff --git a/templates/bulletproof/ie5.css b/templates/bulletproof/ie5.css index aaf7d596..e733438b 100644 --- a/templates/bulletproof/ie5.css +++ b/templates/bulletproof/ie5.css @@ -7,6 +7,14 @@ /* http://s9y-bulletproof.com */ /**********************************************************************/ + +/* IE still seems to produce rounding errors in one */ +/* particular layout (2col s-b) which only appear */ +/* in higher screen resolutions (> 1280x1024) */ +#serendipityLeftSideBar.layout2sb_left { + width: 24%!important; +} + /* stop the footer from extending the page's height */ #footer { height: auto!important; diff --git a/templates/bulletproof/ie6.css b/templates/bulletproof/ie6.css index dfb6b974..845ca328 100644 --- a/templates/bulletproof/ie6.css +++ b/templates/bulletproof/ie6.css @@ -8,6 +8,13 @@ /**********************************************************************/ +/* IE still seems to produce rounding errors in one */ +/* particular layout (2col s-b) which only appear */ +/* in higher screen resolutions (> 1280x1024) */ +#serendipityLeftSideBar.layout2sb_left { + width: 24%!important; +} + #footer { float: none!important; } diff --git a/templates/bulletproof/ie7.css b/templates/bulletproof/ie7.css index 265674e5..9673d690 100644 --- a/templates/bulletproof/ie7.css +++ b/templates/bulletproof/ie7.css @@ -8,6 +8,13 @@ /**********************************************************************/ +/* IE still seems to produce rounding errors in one */ +/* particular layout (2col s-b) which only appear */ +/* in higher screen resolutions (> 1280x1024) */ +#serendipityLeftSideBar.layout2sb_left { + width: 24%!important; +} + #footer { float: none!important; }