Re: [css-d] Text Images not appearing in IE

2007-02-14 Thread david
Michael Stevens wrote:
 www.bctarizona.com/index_new.php
  
 Fine in FF but two problems in IE:
  
 1. The white space of the the Login menu on the last li of the left side
 menu.
 2. Underneath the Presstek ad should be a small graphic with a line
 underneath. The image that is there is correct but there's some text that
 should be to the right of each image as well.
  
 If it was a positioning problem I might have something to go on but it just
 ain't there in IE so I don't know where to start.

Fixing XHTML 1.0 Strict validation errors might be a place to start:

http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fwww.bctarizona.com%2Findex_new.php

Don't know if it makes a difference or not ...

-- 
David
[EMAIL PROTECTED]
authenticity, honesty, community
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- 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] Text Images not appearing in IE

2007-02-14 Thread Michael Stevens
No, but changing it to Transitional does...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of david

Fixing XHTML 1.0 Strict validation errors might be a place to start:
http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fwww.bctarizona.com%
2Findex_new.php

Don't know if it makes a difference or not ...


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- 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] Text Images not appearing in IE

2007-02-14 Thread Gunlaug Sørtun
Michael Stevens wrote:
 No, but changing it to Transitional does...

Transitional doesn't have any particular meaning in IE/win - it's 
handled the same as Strict. Valid source-code matters even to IE/win though.

You have lost big chunks of the main column in IE6. If you want it back, 
you may want to add...

@media screen {
* html #content {height: 1%; margin: 0;}
}

...at the bottom of your stylesheet. That will make all lost parts 
visible in IE6 regardless of doctype - and even without one.

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