Quote:
Originally Posted by Raptor
as you can see they are default templates bar one. So if you can tell me what code to put in which template (as listed) i would be grateful. Telling me to just assign width's isn't helping me - i need the actual code please - thanks
|
The code I posted was for my modified template
The code you posted above with my
default template :
Forumhome mine is identical
forumhome_forumbit_level1_nopost mine is identical
forumhome_forumbit_level1_post identical apart from this on last line
PHP Code:
$forumbit_advertisement
forumhome_forumbit_level2_nopost mine is identical
forumhome_forumbit_level2_post identical apart from this on last line
PHP Code:
$forumbit_advertisement
The problem is not with any of the above but is with this template forumhome_seperate_forumcats Why have you got a table break at the top of that template ? :
PHP Code:
</table>
<br />
<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" 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>
I dont use that plugin so unsure if its correct but you could try :
PHP Code:
<br />
<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" 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>
</table>
Or failing that look at these two lines
PHP Code:
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
And try something like :
PHP Code:
<td class="thead" width="75%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="25%">$vbphrase[last_post]</td>
PS If this works give ACE_UK some karma