View Single Post
Old 05-15-2008, 06:59 PM  
psili
Confirmed User
 
Join Date: Apr 2003
Location: Loveland, CO
Posts: 5,526
I peeped it in IE6; the bottom right text block jumps up. If that's the browser you're seeing issues with you can either keep tweaking your layout to work with one CSS file or just give up and do the shitty thing and add an IE6 specific css file / tags:

There's something like the following where you can inline specific shit for certain IE browsers:

<!--[if lt IE 7]>
... hahahaha { width: 666px; }
<![endif]-->

or, there's also something about prefixing certain CSS tags with an "_".

.content {
width: 520px; /* normal browsers read this */
_width: 540px; /* IE6 will read this - i think */
}

I'm too lazy to research and the above comes from foggy memory, but it might help.
__________________
Your post count means nothing.
psili is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote