Re: [css-d] ie6 bug ONLY when viewing 800x600

2006-07-25 Thread Ian Young
'
Subject: [css-d] ie6 bug ONLY when viewing 800x600


Guys,

This is basically the code:

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

p.s. like 99% of all the things you guys have helped me with turned out
to be a height: 1%; somewhere in my css. I'm going to kick myself if
that's the solution to this one to.

 Not really sure which h1 tag is the problem but why not just  ditch the
table?

Try a list with class which defines the horizontal inline?

Ian
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.3/395 - Release Date: 21/07/2006

__
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] ie6 bug ONLY when viewing 800x600

2006-07-25 Thread David Laakso
Chris C wrote:
 h1test/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,
h1User Account Administration/h1  
becomes:
h2User 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/


Re: [css-d] ie6 bug ONLY when viewing 800x600

2006-07-25 Thread cj
i'm not seeing a large gap between the header and table at 800x600 in
ie here.  i get a little less than the I cursor's height between the
header and table.

winxp pro sp2
ie6
__
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] ie6 bug ONLY when viewing 800x600

2006-07-25 Thread Chris C
David,

I followed the steps in your suggestion, and it appears to have worked!
Thank you so much.

Chris

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