Reputation: 1185
Please look at these 2 pages on IE and on another Browser (like firefox)
http://www.zomghentai.com/kite-episode-1-sub/ and http://www.zomghentai.com/stream/kite/
Notice the glitches on IE, a lot of things look out of place.
Can anyone tell me what CSS edits I should make to fix this ??
Edit :: I'm Using IE 8, I posted screenshots in the comment below
Upvotes: 1
Views: 317
Reputation: 963
your top menu is still set as a default unordered list, try floating left its LIs. Also, IE < 8 's box model is different from the rest of the world's, so try to avoid using paddings & widths combined, or else, write a IE specific stylesheet and link it in the page head adding a code like this:
<!--[if lte IE 7]><link href="style/iespecific.css" rel="stylesheet" type="text/css" /><![endif]-->
Upvotes: 1