foums not aligned

iRiot

New Member
15xu78z.jpg


^^^^^^
How do I fix the width in that little area? I mean, I want it to be one length. Not the lengths of the thread titles.

Also:
wv28id.jpg


^^^^^^^
How do I get rid of the description category. Or better yet, just the text.
And, how do I make the center module match the width of the back table?

Thanks a lot!
 

Filez

New Member
as far as thread go into admincp > vbulletin options > forum listing display options > Last Thread Title Maximum Displayed Characters make it around 20 then save and see if that helps if not I have another way to fix it. The second question is shrink your images as in image resizer or use litebox..sometimes the pics over expand and cause what you are showing.
 

iRiot

New Member
filez said:
as far as thread go into admincp > vbulletin options > forum listing display options > Last Thread Title Maximum Displayed Characters make it around 20 then save and see if that helps if not I have another way to fix it. The second question is shrink your images as in image resizer or use litebox..sometimes the pics over expand and cause what you are showing.

Your method didnt work. But, I do thank you for trying.

What was the second method? And thanks for the solving of the image issue in the cmps.
 

chakru

New Member
here is the answer

Version: 3.7.0 Rating: (7 votes - 3.86 average)
Released: 29 May 2008 Last Update: Never Installs: 29
Not Supported


what is this for?

some times when we use another style beside the default style of vbulletin, th last post in the forum home be not aligned in each category and be different in width form category to another depending on the width of the title of the last post... (screenshoots below explain more).

and this simple mod is to fix that and make the width of last post table the same in every category. whatever the title width is..

1- go to you "FORUMHOME" template
2- look for the the following code:




<tr align="center">
<td class="thead">&nbsp;</td>
<td class="thead" width="100%" align="$stylevar[align=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>
3- if it there remove it and save the template. if it not there just let the template as it is without any changes.

4- go to "forumhome_forumbit_level1_nopost" template

5- find the following code:


<tr align="center">
<td class="thead">&nbsp;</td>
<td class="thead" width="100%" align="$stylevar[align=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>
6- if it there, replace it with the following:


<tr align="center">
<td class="thead" width="5%">&nbsp;</td>
<td class="thead" width="50%" align="$stylevar[align=left]">$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" width="0%">$vbphrase[moderator]</td>
</if>
</tr>

and save.

if it not there just add it exactly after the following code:



<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">

then save and it's done.

regards

Dont forget to click thanks
 
Top