Mod Stripes [4 Variants]

( Collapse )
By logging in to LiveJournal using a third-party service you accept LiveJournal's User agreement
<div>
tags in the code. (eg. if your text is justified, CTRL+F for <div align="justify">
and the closing </div>
tag). div
tags to p
tags will work. (ie. changing <div align>
to <p align>
and </div>
to </p>
etc.)<div align="justify">text text text</div>
becomes <p align="justify">text text text</p>
<div align="left">text text text</div>
becomes <p align="left">text text text</p>
<div align="right">text text text</div>
becomes <p align="right">text text text</p>
div
tags completely. div
tags to p
tags, make sure any font styling (ex. <font face="arial" color="#333" size="1">
) comes AFTER the p
tag. <font face="arial" color="#333" size="1"><div align="justify">text text text</div></font>
<p align="justify"><font face="arial" color="#333" size="1">text text text</font></p>