The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How to align my forum main page
Hello what do I need to edit to align the boxes for each section on my forum ?
As shown here in the picture below --------------- Added [DATE]1205237432[/DATE] at [TIME]1205237432[/TIME] --------------- Now fixed one of my super moderators looked into it and found this in forumhome_forumbit_level1_nopost : Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$stylevar[outertablewidth]" align="center"> <if condition="$childforumbits"> <tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}"> <tr align="center"> <td class="thead" width="15"> </td> <td class="thead" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead" width="160">$vbphrase[last_post]</td> <td class="thead" width="40">$vbphrase[threads]</td> <td class="thead" width="40">$vbphrase[posts]</td> <if condition="$vboptions[showmoderatorcolumn]"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> And changed to this : Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$stylevar[outertablewidth]" align="center"> <if condition="$childforumbits"> <tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}"> <tr align="center"> <td class="thead" width="5%"> </td> <td class="thead" align="$stylevar[left]" width="50%">$vbphrase[forum]</td> <td class="thead" width="25%">$vbphrase[last_post]</td> <td class="thead" width="10%">$vbphrase[threads]</td> <td class="thead" width="10%">$vbphrase[posts]</td> <if condition="$vboptions[showmoderatorcolumn]"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> Posted here incase anyone else has the same problem |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|