PDA

View Full Version : Who' online alignment


rebelsrock06
08-07-2004, 05:37 PM
Is there anyway i can make the Who's Online title be centered on the forumhome ?

defi
08-07-2004, 05:44 PM
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

<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)

<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)

<div align="center" class="whatevercss">phrase here</div>

please note you don't need the class in a div alignment tag