Re: [css-d] IE Clear/Float Issue

2006-02-05 Thread david
http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fx0f.org%2F

8 validation errors, starting off with a closing /li that has no 
corresponding opener ... the rest seem to be related to unescaped or 
unencoded characters in query strings in hrefs, don't know what to do 
about that.

When I tried to validate the CSS, the results page displayed this:
Please, validate your XML document first!
Line 74
Column 11
The element type ul must be terminated by the matching end-tag /ul.

-- 
David
[EMAIL PROTECTED]
authenticity, honesty, community

Scott Wilcox wrote:
 I was wondering if anyone can help me address an issue with IE.
 
 The page in question is http://x0f.org
 
 Layout works fine in Firefox, and borks in IE and I can't see/understand 
 why. Its something to do with the floats I think, or the clearing.
 
 Anything anyone can offer would help =)
 
 Scott.
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- 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/


Re: [css-d] IE Clear/Float Issue

2006-02-05 Thread Scott Wilcox
eeep! iI copy and pasted that part back in just before I wrote my email :)

my bad, also forgot to encode amps too.

Validation hits fixed, still same issue though  :(

david wrote:
 http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fx0f.org%2F

 8 validation errors, starting off with a closing /li that has no 
 corresponding opener ... the rest seem to be related to unescaped or 
 unencoded characters in query strings in hrefs, don't know what to do 
 about that.

 When I tried to validate the CSS, the results page displayed this:
 Please, validate your XML document first!
 Line 74
 Column 11
 The element type ul must be terminated by the matching end-tag /ul.
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- 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/


Re: [css-d] IE Clear/Float Issue

2006-02-05 Thread Gunlaug Sørtun
Scott Wilcox wrote:
 Validation hits fixed, still same issue though  :(

 http://x0f.org

Cause: divider-image (/media/gfx/divider.jpg) is 9px too wide for the
space given, and IE/win expands containers...

Result: div id=contentColumn becomes 9px too wide and runs out of
space - falling below side-columns.

Quick fix - add:
#contentColumn {margin: 0 -10px 0 0;}
...which gives IE/win 1px extra space for its bug.

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- 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/