Quote:
Originally Posted by rebelsrock06
Is there anyway i can make the Who's Online title be centered on the forumhome ?
|
You mean the what's going on title?
Yup, find the following code in forumhome
Code:
<thead>
<tr>
<td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
</tr>
</thead>
Wrap a div tag around the phrase (so replace the code with)
Code:
<thead>
<tr>
<td class="tcat" colspan="2"><div align="center">$vbphrase[whats_going_on]</div></td>
</tr>
</thead>
To center text, just use a div tag (for example)
PHP Code:
<div align="center" class="whatevercss">phrase here</div>
please note you don't need the class in a div alignment tag