Quote:
Originally Posted by neocorteqz
i got it srtipped down to this
HTML Code:
<!-- test -->
<tr>
<td align="center" width="100%"><span class="bigusername" color="#FFFFFF">$thread[title]</span>
</td></tr>
<br>
<!-- /test -->
How do i make the text size bigger, and it's not centering.
|
I think it's because you haven't enclosed it in a table. You need the <table> tags from my earlier post.
Also, although hard-coding the color (#ffffff) will work if you only have one style, if you ever add a new style you may find this doesn't match, which is why it's better to use the normal CSS values. That way it will look right regardless of style.
If you just want one similar to the one in here, you could get away with this cheap 'n' dirty version:
Code:
<center><span class="bigusername"><b>$thread[title]</b></span></center>