Richard Brown wrote:
> I was informed that I might have the double margin bug for the 
> following site:

> Site url: <http://www.cregy.co.uk/>

Double margin fix is working, but you have triggered a serious IE-bug
with a flaw in your CSS.

body, html {
font-size: 100.01%/1.2;
}
...is ignored by all browsers because it isn't valid. That makes IE open
for the 'em font-resizing bug' with some extreme font-sizes in sidebar -
breaking everything and causing float-drop.

Correct to:

body, html {
font-size: 100%;
line-height: 1.2;
}
...and get normal font-sizes and behavior.
---------

Calendar looks odd in IE/win. Some cells are too wide and the entire
calendar is therefore too wide and causes float-drop on font-resizing.
Also, it doesn't tolerate much font-resizing in any browser -
overflowing its borders.

Temporary fix only (since I don't have time to debug it):

#wp-calendar {
font-size: 14px;
}
...which will prevent float-drop but not fix the odd look in IE/win.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to