[WSG] different margin in ie from firefox

2006-11-06 Thread Robin @ Xplore.net
I have a small problem with my margin which is not rendering the same in ie as it is in firefox and netscape, could anyone see what the problem might be please? http://www.starfoods.co.nz/test/testsplash.htm cheers for your help Robin.

Re: [WSG] different margin in ie from firefox

2006-11-06 Thread John Faulds
Two problems: IE's double margin and 3px gap bugs. For the first, add display: inline to #left_pos and for the second you can give IE only a margin-left of 414px for #right_pos. On Tue, 07 Nov 2006 09:12:16 +1000, Robin @ Xplore.net [EMAIL PROTECTED] wrote: I have a small problem with my

Re: [WSG] different margin in ie from firefox

2006-11-06 Thread John Faulds
No, I didn't mean change the left margin to 414 for *all* browsers; I meant only for IE. You'd use an IE-only filter like * html #right_pos { margin-left: 414px; } or use IE conditional comments to make sure only IE sees that rule. (By the way, you don't need to start a new subject for

RE: [WSG] different margin in ie from firefox

2006-11-06 Thread Robin @ Xplore.net
PROTECTED] On Behalf Of John Faulds Sent: Tuesday, 7 November 2006 3:43 p.m. To: wsg@webstandardsgroup.org Subject: Re: [WSG] different margin in ie from firefox No, I didn't mean change the left margin to 414 for *all* browsers; I meant only for IE. You'd use an IE-only filter like * html #right_pos