Quote:
Originally Posted by masons_mum
i added this but for 5 of my styles it shows 'Forum, Last Post, Threads, Posts. ABOVE the category name so its not inline. How can i change this? Other than that works fab thank you
|
Quote:
Originally Posted by GoTTi
the last post, threads, and post columns for the stats are not lined up properly. ideas?
|
To get rid of the header information on a style from above the tabs and into the tabs instead:
Delete the following from the forumhome template:
HTML Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead">$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>
After $forumbits, add:
HTML Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
In forumhome_forumbit_level1_nopost
Add this to the top of the template:
HTML Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
Then before
Add:
HTML Code:
<tr align="center">
<td class="thead" width="50"> </td>
<td class="thead" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead" width="90">$vbphrase[threads]</td>
<td class="thead" width="90">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
Now add </table> to the end of the template and you should be good to go.
Keep in mind you can mess with the option to add the forum table wrap to mess with which styles it'll automatically update well for you, and for the others you can make the edit above if you'd like.
Quote:
Originally Posted by mystic10
Yeah Same Problem..its Not In Linke...is There Anyway I Can Pic And Choose Which Ones I Want To Show.
|
Not in the light version, sorry.