Chris C wrote:
> <h1>test</h1>
> <table>
> .
> </table>
>  
> The problem is, that there is about 10 spaces between the </h1> tag and
> the <table> in ie6.
>  
> Here is a sample link.  It seems to happen more when ie6 is viewed using
> a resolution of 800x600 (telling me it's probably a sizing issue with
> the table).  But the problem is the table isn't that big, it's actually
> being expanded to fit properly.
>  
> Here is the link:
> http://rideaubuslines.lead2gold.org/ie6_800x600.html
>  
> Chris
Dunno :-) . I get the same get 20px below in xp ie6, opera, and ff. 
Can't get much better than that. *Except* with font-zoom-- when the text 
wraps the lines overlap. You'll need to lead it, to correct that; and, a 
background-color, and color, on body to correct your page being white on 
fuchsia in Opera(on my end-- not everyone defaults to white).
body, html {background-color: #fff; color: #000;}
Usually h1 is used only once, so:
/*#top*/ h1 {
line-height: 0.95; <<<<and add
padding: 0;
margin: 0;
}
This,
<h1>User Account Administration</h1>  
becomes:
<h2>User Account Administration</h2>  
and add this selector to your style sheet for it:
h2 {
line-height: 0.95;
font-size: 200%;
margin: 0 0 20px 0;
}
You had this in your style sheet, but had no h2 on the page-- is it for 
another page?
/*#content h2 { margin: 0 0 .5em 0; }*/ <<<<<delete
Best,
~dL











-- 

http://chelseacreekstudio.com/ca/ccs/pow/pow.html

______________________________________________________________________
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/

Reply via email to