Hi, all. I apologize in advance if this isn't the kind of thing you guys can help me with! But I'm still really new at LJ layouts, and as much CSS experience as I've got under my belt, I'm really stumped by the way my otherwise functional layout renders in IE (6
(
Read more... )
Comments 13
It looks like a jumbled mess in IE7, too. I think it might have something to do with all the height: 100% settings, which probably aren't necessary.
Reply
You're right, the height: 100%; was the problem. Unfortunately at least one of them was necessary. XD But I'll see if I can figure out which one that is. Thanks!
Reply
1.) The page isn't scrolling -- no scrollbar, even though there's clearly enough text to merit one.
2.) The div with the images in it will appear when it's coded with "position: relative", but not with "position: absolute". ???
Reply
* {
overflow: visible !important;
font-family: verdana;
}I don't know what you're trying to do here, but I would remove this entirely. You can put the font declaration in body{}, and overflow: visible is going to prevent scrollbars, not show them. [Reference link]
From the same site [link] IE6 does not support position: fixed. Note that for compatibility purposes, Expressive always uses "strict" or "standards" mode.
Reply
Leave a comment