Re: [WSG] IE6/7 behaviour

2008-06-24 Thread Gonzalo González Mora
On Tue, Jun 24, 2008 at 11:41 AM, Rob Enslin [EMAIL PROTECTED] wrote: Hi all, if this is off topic I apologise in advance. I have a slight issue with IE (surprise surprise) on a page I'm *working* on. In FF and Safari (PC and Mac) my page is centred (#wrap). In IE it's not. Although not a

Re: [WSG] IE6/7 behaviour

2008-06-24 Thread Sagnik Dey
Hi Rob, Use *text-align:center *in body body { margin: 0; padding: 0; text-align:center; } -- Cheers to life Sagnik :: 26four79.com On Tue, Jun 24, 2008 at 8:11 PM, Rob Enslin [EMAIL PROTECTED] wrote: Hi all, if this is off topic I apologise in advance. I have a slight

Re: [WSG] IE6/7 behaviour

2008-06-24 Thread Sagnik Dey
Sorry...forgot to complete the code...you have to further align the text left in the *#wrap * #wrap { width: 832px; margin: 0 auto; text-align:left; } -- Cheers to life Sagnik :: 26four79.com On Tue, Jun 24, 2008 at 8:38 PM, Sagnik Dey [EMAIL PROTECTED] wrote: Hi Rob, Use

Re: [WSG] IE6/7 behaviour

2008-06-24 Thread Rob Enslin
Hi @Gonzalo - fantastic! Thank you. Rob [Moleskin note book where are you?] 2008/6/24 Gonzalo González Mora [EMAIL PROTECTED]: On Tue, Jun 24, 2008 at 11:41 AM, Rob Enslin [EMAIL PROTECTED] wrote: Hi all, if this is off topic I apologise in advance. I have a slight issue with IE (surprise

Re: [WSG] IE6/7 behaviour

2008-06-24 Thread Jon Tan
On 24 Jun 2008, at 15:41, Rob Enslin wrote: Code CSS snippet: body { margin: 0; padding: 0; text-align: center; } #wrap { width: 832px; margin: 0 auto; } …that should do it. All the best, Jon - http://jontangerine.com/

Re: [WSG] IE6/7 behaviour

2008-06-24 Thread Matijs
I assume by IE in this case you mean IE6, not that it's younger brother doesn't have its share of problems ;) In IE7 centering a column like this should work. But what Gonzalo said should work. He just beat me to it :) If you're interested in trying a different way, have a look at this:

Re: [WSG] IE6/7 behaviour

2008-06-24 Thread Gunlaug Sørtun
Rob Enslin wrote: Although not a standards-based question (I think) I wonder if anyone has the 'fix' for it? The page: http://www.servicemanagement.co.uk/new.htm Maybe better to trigger standard mode in browsers first, and add fixes later. The combination of declarations you have now is a

Re: [WSG] IE6/7 behaviour

2008-06-24 Thread James Pickering
Gunlaug Sørtun [EMAIL PROTECTED] wrote: The combination of declarations you have now is a somewhat new one - to me at least. An XML declaration has no place above an HTML DTD in an HTML document, and the DTD is incomplete and triggers quirks mode in all browsers...

Re: [WSG] IE6/7 behaviour

2008-06-24 Thread Rob Enslin
Hi @James and @Gunlaug, Points noted on the page declaration issues. Thanks. Rob 2008/6/24 James Pickering [EMAIL PROTECTED]: Gunlaug Sørtun [EMAIL PROTECTED] wrote: The combination of declarations you have now is a somewhat new one - to me at least. An XML declaration has no place