vote up 1 vote down star

Just today learned that one of my websites, TwitPeek.net, is not rendering properly in IE8 outside of "Compatibility Mode". The site works fine in IE7.

Upon some investigation, it appears that IE8 is refusing to apply the page stylesheets to the anchor and img tags that the page's javascript generates. Because of this, none of the script.aculo.us animations display properly, the images aren't set to a uniform size, and all margins are completely ignored.

Basically the page looks like crap.

This has to be an IE8 bug, but is there something I can do to work around it besides using the compatibility mode meta tag?

EDIT: Problem solved. IE8 wasn't processing the class attribute on the new DOMElement. Had to set className instead.

flag

75% accept rate
can you post what the HTML of your dynamically added images looks like, and then the corresponding CSS? – Jason Jul 25 at 3:36
Indeed, IE8's new standards-compliant behavior is covered here: blogs.msdn.com/ie/archive/… – EricLaw -MSFT- Jul 25 at 16:38

1 Answer

vote up 0 vote down check

have you seen this in your source-code?

<body id="index;" >

i doubt it has anything to do w/IE8 and more to do w/your HTML...

EDIT I think your error is here:

#FeedList>div>a.item>img {    <------------
    border:0;    
    width:140px;
    height:140px;    
    -webkit-box-shadow:0px 2px 7px black; <--------
}

maybe try:

#FeedList div a.item img {
    border:0;    
    width:140px;
    height:140px;    
}

to see what it does... also, please post the generated HTML... you may be having problems with malformed HTML also.

PS: I also get the following JS error:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6;
 SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; Zune 3.0; .NET CLR 
3.5.30729; .NET CLR 3.0.30618; Tablet PC 2.0)

Timestamp: Sat, 25 Jul 2009 04:13:00 UTC


Message: 'console' is undefined
Line: 21
Char: 41
Code: 0
URI: http://www.twitpeek.net/js/twitpeek.js
link|flag
Agreed. The site and animations actually work fine for me in IE8. – Jason Berry Jul 25 at 3:29
ps... you may also want to try jquery. it's way easier :) – Jason Jul 25 at 3:29
ty, didn't notice that, but it's not related to the issue I'm having. Perhaps this is a Win7 IE8 issue then, since that's what I'm running on. – ChiperSoft Jul 25 at 3:33
i do see what you mean... your images in ie7 look way better than in ie8.. that's interesting, but again i'm sure it has to do w/your CSS and not w/IE8 – Jason Jul 25 at 3:34
This is what I'm getting in IE8: twitpic.com/bj690 This is what it should look like: twitpic.com/bj6ha – ChiperSoft Jul 25 at 3:38
show 8 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.