PDA

View Full Version : Created an extra table and need help on how to fill gap


MixMakers
03-16-2008, 08:39 AM
Can't explain it too well so I included a pic:

http://img214.imageshack.us/img214/577/gaphp2.gif

http://xrateduploads.com/out.php?i=240_Untitled23.gif

I've added the additional column (the far right one with the circle) but now I don't know how to fill the gap that I circled in red. Any help is appreciated. Thanks!

Brueskie
03-16-2008, 10:38 AM
You need to update your colspan attributes.

MixMakers
03-16-2008, 04:32 PM
You need to update your colspan attributes.

Do you know which template(s) I should be editing? I don't really have a clue as to what to look for.

Brueskie
03-16-2008, 05:26 PM
You'll need to look for the code between the colspan="<if condition="$vboptions['showmoderatorcolumn']"></if>" statements in the forumhome_forumbit templates. Most likely, you'll need to add one to each of the values. For instance...

<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">5<else />4</if>">

...would become...

<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">

That should take care of the problem, judging solely by the picture you provided.

MixMakers
03-16-2008, 05:30 PM
You'll need to look for the code between the colspan="<if condition="$vboptions['showmoderatorcolumn']"></if>" statements in the forumhome_forumbit templates. Most likely, you'll need to add one to each of the values. For instance...

<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">5<else />4</if>">

...would become...

<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">

That should take care of the problem, judging solely by the picture you provided.

Ah, worked out perfect :D Thanks a ton for the help!

Brueskie
03-16-2008, 05:45 PM
Glad to be of assistance. :)