The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#32
|
||||
|
||||
i installed the mod.
need to fix the width of LAST POST.. i tried to made it 240 its not GOING beyond that dunt know why ?? check attachment pls |
#33
|
||||
|
||||
It's not going beyond because the whole width of the table cannot exceed the number you have put it.
To make it 240, you either have to make the other table/s smaller, or making the whole table wider, then set 240. |
#34
|
||||
|
||||
Quote:
|
#35
|
||||
|
||||
Extend the top table too, as well as the image at the bottom.
|
#36
|
||||
|
||||
Now ok.
In "main table width" is 760 px and my "forumhome_forumbit_level1_nopost" is: PHP Code:
|
#37
|
||||
|
||||
Ok, this installed real nice except of the column spacing issue. I used the code Sandrose posted, and while everything is lined up now, I too still have the overhanging catagories. I dont quite understand what I am supposed to be modifying to even it out. My test forum is set for 800px width.. did adding this expand the catagories beyond 800px or has my header reduced width? Sorry, not really sure what I need to do to fix this if someone would kindly explain it.
Also, I found that a catagory with no posts in it (as in a forum thats actually a direct link to an external link) stays a bit out of alignment. Thanks in advance! |
#38
|
||||
|
||||
Anyone please?
|
#39
|
|||
|
|||
that's cool.
|
#40
|
|||
|
|||
Getting the next error if i save the edited template: FORUMHOME, tried it a few times.. can someone tell me what it is?
Quote:
|
#41
|
||||
|
||||
It seems there was some changes between v3.0.0 and 3.0.1 that effect this because I saw strange results as well after a clean install of 3.0.1 on my local test forum and then applying this.
What I did to get the desired results and correcting both my column and underhanging table problems, was actually go back and visit Zacherys older hack for the gamma versions and mash out a solution. If Zackary doesnt mind, let me try to explain what I did and if he or anyone else want to point out any mistakes, please feel free. Amazingly, having no idea what I was doing and I simply got lucky adding things here, pulling things there until it worked for me. First off for those of you who have a fixed width forum, applied this and now have the top and bottom tables underhanging from the catagories, the problem is one line of code from the directions in the first post. I replaced it with another line of code from previously mentioned gamma release of this and the overhang goes away. With the current code, despite you having a fixed width, does push the catagory tables out further than your settings so its not that the header or bottom tables need adjusting, the catagories do get bigger. Again, assuming you have applied this hack, in forumhome_forumbit_level1_nopost, find: Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$stylevar[outertablewidth]" align="center"> Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> As I said above, there seems to have been a change in vb 3.0.1 and how the original directions for this play together, more specificly in the FORUMHOME template. When the directions from this mod and the gamma version are applied, I ended up with an extra Forum/Last Post/Threads/Posts table at the top so ultimatly, this is how I fully applied Catagory Spacing... Open the FORUMHOME template and find the first occurence of: Code:
<tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[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> Next apply the following GAMMA version of this mod originally from Zacherys "[vB 3.0.0 RC] - [Release - Gamma] Forum Spacing" post (http://www.vbulletintemplates.com/mo...ead.php?t=5390) Open forumhome_forumbit_level1_nopost and at the very top of the template add this: Code:
<if condition="$forum[forumid] == X"> <else /> </table> <br /><table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> </if> Now you should have your catagories spaced and not have the extra "Forum/Last Post/Threads/Posts" table at the top. However, for those with a fixed width forum (as I do) you may now be having alignment issues with the columns. Using a suggestion from Sandrose earlier in this thread, I fixed my column alignment issue by: Open forumhome_forumbit_level1_nopost and find: Code:
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}"> Code:
<tr align="center"> <td class="thead" width="5%"> </td> <td class="thead" width="51%" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead" width="30%">$vbphrase[last_post]</td> <td class="thead" width="30">$vbphrase[threads]</td> <td class="thead" width="30">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> Now you may need to adjust the numbers and % to fit your needs but those posted above are doing it for me. I tested this on vB 3.0.0 and vB 3.0.1 and it works on both. Being this really if my first time posting an actual fix with code no less, that worked for me, hopefully I explained that OK and it come out right. If not, admins/mods, please feel free to correct me. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|