Re: POE site not displayed correctly under IE7
Tsz Ming WONG <[email protected]>
| Newsgroups | gmane.comp.lang.perl.poe |
|---|---|
| Message-ID | <[email protected]> |
Hello,
Now look better, but the whole page is still aligned to the left, rather
than center in Firefox/Opera.
This is because under quirks mode, the auto margin method is not enough to
make IE align your container to the center
It can be fixed by adding the following CSS into your global.css
body {
text-align:center
}
#container {
text-align:left;
}
On Sun, Jun 14, 2009 at 1:43 PM, Rocco Caputo <[email protected]> wrote:
> Change applied. Thank you, Phil.
>
> --
> Rocco Caputo - [email protected]
>
> On Jun 14, 2009, at 00:33, Phil Whelan wrote:
>
> Hi Rocco,
>>
>> You can change this in your global.css
>>
>> #navigation {
>> FONT-SIZE: 8pt; WIDTH: 100px
>> }
>>
>> to this...
>>
>> #navigation {
>> float: left;
>> FONT-SIZE: 8pt; WIDTH: 100px
>> }
>>
>> Cheers,
>> Phil
>>
>
>
--
Best Regards,
tszming