PDA

View Full Version : Skin Centering Text in IE


King Justice
05-24-2008, 02:47 AM
Hello.

My forum skin works great in FireFox but not in IE; it centers the text for some reason in IE.
Can anyone tell me how to fix it?

URL: Sell Game Accounts (http://www.egamingsupply.com/forum/)

Help appreciated. :o

GameWizard
05-24-2008, 02:59 AM
There's definitely something in your CSS that's causing this problem, something that's causing it to be centered.

I also noticed you use this following code throughout your page:
float: center;
I just wanted to point that this code doesn't actually do anything, there is no 'center' atrribute, only left and right. You can remove this code.

As for your problem, if you add the this code to the proper attribute, it should fix your problem:

text-align: left;

You will need to play around with it and find out where it should go as im not familiar with your css.

King Justice
05-24-2008, 02:44 PM
There's definitely something in your CSS that's causing this problem, something that's causing it to be centered.

I also noticed you use this following code throughout your page:
float: center;
I just wanted to point that this code doesn't actually do anything, there is no 'center' atrribute, only left and right. You can remove this code.

As for your problem, if you add the this code to the proper attribute, it should fix your problem:

text-align: left;

You will need to play around with it and find out where it should go as im not familiar with your css.
Hello.

I have went ahead and done this, but there is still a problem. Text is still being centered in IE. :( Looks great in FireFox though. :(

--------------- Added 1211644329 at 1211644329 ---------------

Update: So I went ahead in and added the CSS attribute table { text-align: left; } and it fixed it.

Please confirm that it looks good to you in FireFox and IE, whoever is viewing this thread. :)

GameWizard
05-24-2008, 04:10 PM
Seems to be working :up: