Quote:
Originally Posted by indie2industry
I guess it's too long to post in a thread. I put it in a text file.
|
ah, I should have saw it right off the image you posted... custom style that is different colspan than default vb and most custom styles..
Default vB is a colspan of 5 (or 6 with moderator column) ... your style takes the column that normally is "Last Post" and puts it in a DIV within the "forum" column, so your custom style is a colspan of 4 ( or 5 with moderator column) ..
so what you need to do is take out the "last Post" column in this chunk of code (BOLD RED).. This chunk is the first bit of code for each tab, so you will have to find it for all 6 of your tabs..
Code:
<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>
THEN in all your tbody chunks (all of them)... you are going to have to change the colspan numbers.. Change all the 6's to 5's and all the 5's to 4's (The numbers are in RED
Code:
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><a style="float:right" href="#top" onclick="return toggle_collapse('forumbit_11')"><img id="collapseimg_forumbit_11" src="images/solido/buttons/collapse_tcat.gif" alt="" border="0" /></a><a href="forumdisplay.php?f=1">Indie 2 Industry General Forum</a></td>
</tr>
</tbody>