PDA

View Full Version : duplicate VB.org


GSeybold
07-23-2009, 08:02 PM
How can I duplicate the width of vb.org columns on main page? I like how the last post is almost center.

Thanks

Gabby

Dismounted
07-24-2009, 10:33 AM
The widths of the columns is 50%, 34%, 8%, 8%. You will need to add these to either: a) FORUMHOME, if you don't have separated categories; or b) forumhome_forumbit_level1_nopost, if you do.

GSeybold
07-25-2009, 12:15 AM
Thank you so much. :) I just looked and I don't see where to add them. I'm using default with no seperated catagories.


<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead">&nbsp;</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>
$forumbits
<tbody>
<tr>
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a>
<if condition="$vboptions['forumleaders']">&nbsp; &nbsp;
<a href="showgroups.php$session[sessionurl_q]">$vbphrase[view_forum_leaders]</a></if>
</strong></div></td>
</tr>
</tbody>
</table>

Dismounted
07-25-2009, 04:35 AM
Change the widths of these four:
<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>

GSeybold
07-25-2009, 08:42 AM
Thank you Dismounted.

I hate to bother but can you show me the exact code I need to use?

Do they all have to be like this but just change the number percentage?

<td class="thead" width="100%" align="$stylevar[left]">$vbphrase

Again , thanks so much for your help.

Gabby

Dismounted
07-25-2009, 10:37 AM
Do they all have to be like this but just change the number percentage?
Add a width attribute if it's not there, and edit it if it is.