[css-d] Disappearing page in IE6

2007-12-08 Thread Tammy Grossbauer



In Explorer 6, nothing shows up on this page, but the background tiling. I've 
never seen this happen. Has anyone else?

http://www.webdesigntg.com/tmpeleven.html

http://www.webdesigntg.com/styleseleven.css

_
Put your friends on the big screen with Windows Vista® + Windows Live™.
http://www.microsoft.com/windows/shop/specialoffers.mspx?ocid=TXT_TAGLM_CPC_MediaCtr_bigscreen_102007
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Disappearing page in IE6

2007-12-08 Thread scott . swabey
Tammy Grossbauer wrote:
 
 
 In Explorer 6, nothing shows up on this page, but the background tiling. I've 
 never seen this happen. Has anyone else?
 
 http://www.webdesigntg.com/tmpeleven.html
 

Hi Tammy

It looks like your style block in the head has become incorrectly 
nested. Try:

style type=text/css media=all
!--
@import url(styleseleven.css);
--
/style

!--[if lte IE 6]
link rel=stylesheet href=tmponeIE6.css type=text/css
![endif]--

!--[if IE 7]
link rel=stylesheet href=tmponeIE7.css type=text/css
![endif]

Regards
-- 

Scott Swabey
Design  Development Director - Lafinboy Productions
www.lafinboy.com | www.thought-after.com
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Disappearing page in IE6

2007-12-08 Thread Matt Lee
Tammy Grossbauer wrote:

 In Explorer 6, nothing shows up on this page, but the background tiling. I've 
 never seen this happen. Has anyone else?
 
 http://www.webdesigntg.com/tmpeleven.html

Yup, it's a really silly little mistake. I ran the page throught the W3C
HTML validator, and it looks like you're missing the end to your
conditional comment..

#  Error  Line 18, Column 11: ENDIF is not a reserved name.

/style![endif]--

Because of that, IE is getting stuck.

Hope this helps,

matt



signature.asc
Description: OpenPGP digital signature
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Re: [css-d] Disappearing page in IE6

2007-12-08 Thread Rob Emenecker
Your closing /style tag is misplaced. Put it before the first conditional
MSIE statement.

 

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/