Hi All, Have a display issue on IE (Firefox works great) on a client site I am working on - can someone check out the CSS and give me a hand? The right hand column drops below the left hand side on IE. http://www.webcomponents.biz/CMC/index.asp Thanks in advance for any help!
IE does width calculations slightly different than other browsers, so basically one of the columns is too wide for the container that holds them both.
search google for 'IE css hacks' it should show you how to fix it so IE uses a different css file to FF so you can fix this prob
There are many 'hacks' you can utilise for CSS, where Firefox will overlook the hack, and IE will pick up on it (or vice versa, I've forgotten which so you'll need to find out). Find the piece of code which determines the wrong-size you're having and bung this piece of code in ASWELL as the current piece of code: * html divname {whichever-measurement:-sizepx;} That ought to patch it up.
I do believe that the star hack has been fixed in IE7, so better of just by using the IE conditionals and linking to a seperate CSS style sheet for IE and override the values in there.