Page 1 of 1

CSS Frustration from hell

Posted: Tue Apr 07, 2009 3:02 pm
by Crispin_Java
Hi Everyone,
I have recently added a shoutbox to the left side of my site. The middle section is already created, so to add it to the left I just put 'float: left;' in it's div class. It shows up perfectly in Google Chrome and Firefox, but in IE, all of the middle content is shifted about 100px to the right... It looks totally screwed up. It there anything I can do about it?
Cheers,
Crispin

Re: CSS Frustration from hell

Posted: Tue Apr 07, 2009 3:08 pm
by watson516
Do you have any code?

Re: CSS Frustration from hell

Posted: Tue Apr 07, 2009 3:16 pm
by Crispin_Java
After hours of trying to sort this out, here is the solution for screwy formatting in Internet Explorer: Two different '<div id="sfsfds">whatever</div>' declarations NEED to be both encased in a master div class for them to appear on the same 'line'. i.e.

<div id="one">

<div id="two">
</div>
<div id="three">
</div>

</div>

Re: CSS Frustration from hell

Posted: Tue Apr 07, 2009 3:40 pm
by Christopher
That's actually pretty standard "screwy formatting" needed to do style based layout in all browsers.