Log in

View Full Version : Hmm.. How would I.?


Oblivion Knight
03-09-2004, 07:55 PM
I've attached an image of what I would ideally like to do..
Unfortunately, it's not as simple as removing the extra <td> tag because it is needed for the new colspan and such to set the table up differently..

This is the section of html that was added:

<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
<if condition="$forum['subforumcolumns'] > 1">
<tr>
<td class="alt2" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" width="100%">
$childforumbits
</table>
</td>
</tr>
<else />
$childforumbits
</if>
</tbody>
</if>There must be some way to hide the extra <td> tag somehow.?

Brad
03-09-2004, 09:40 PM
You could try using $forumid in a <if> tag to hide that for the one forum the layout is used for.

Zachery
03-10-2004, 04:02 AM
I think Xenon ported it

Oblivion Knight
03-10-2004, 10:47 AM
I think Xenon ported itYes it's his mod I'm using, but the layout went weird with my style. So I tried to fix it myself, and that's as far as I got.. I just need to lose the extra space now.