View Single Post
Old 01-06-2013, 05:50 PM   #4
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,549
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
The align attribute is not valid for whatever your declared document type is.
So no:
Code:
<h1 align="center">Header</h1>
or
Code:
<h2 align="center">Sub Header</h2>
or
Code:
<p align="right">Words.</p>
Those align attributes have to go. If you want to do inline text alignment, you're going to have to do something like:
Code:
<h1 style="text-align: center;">Header</h1>
Apparently you also have something like:
Code:
<font face="serif">
That's no good either. But everybody's right ... it would be much better if we could see the (x)html in question. But basically, your good ol' fashioned HTML 3.2-type tags and attributes just aren't going to cut it here.

Last edited by DiapDealer; 01-06-2013 at 05:53 PM.
DiapDealer is offline   Reply With Quote