Log in

View Full Version : How Do I Move" Forum" "Last Post"


WAVERUNR
10-23-2008, 12:38 PM
How do I move these items in the table header right above the main forum.
Right now
"Forum" is to the left of the block
"Last Post" is off center
"Threads" & "Posts" is centered in their blocks

What I would like to do is either move "Last Post" to the left to match "Forum" or to the center

Thanks

Lynne
10-23-2008, 01:35 PM
To easily find the template you need to modify - vboptions > General Settings > Add Template Name in HTML Comments > set to Yes . Then go back to your page and view the source code and you will see the name of the template called around your part of the code. Then just go to edit that template and put in "align=left" or "align=right" in the td tag for that column.

WAVERUNR
10-23-2008, 08:56 PM
Still lost--- anyone know where this code is adn how it can be modded

--------------- Added 1224800082 at 1224800082 ---------------

May have found where the code is. would someone know what to change???
tell me if this is the right code:



<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead">&nbsp;</td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead>
$forumbits
<tbody>

Lynne
10-23-2008, 10:09 PM
You can try changing this line:
<td class="thead" width="175" align="center">$vbphrase[last_post]</td>

(or align="left")