Can anyone help me fixing this vbulletin style?

lovelyboy9870

New Member
I have installed style of version 3.7.4 on my 3.8.1 vbulletin forum. The style looks good when the sub-forum manager mod is disabled, but this is how it looks after sub-forum manager mod with 2 columns is enabled. It just overlaps forums and the titles. Here is the style how it looks.


3539943a2d9fcfd89dcdba9054640e122612a16.jpg




Can anyone help me out to fix this problem?
 

mojopanel

New Member
aree. i had that problem... can you give me your FORUMHOME template please.....

do you want me to remove the lastpost for ya... and have you added any mods tou change the FORUMHOME template... like have you added code or has a add-on auto edited it...(i hope you get me)

PS: i need the forumhome for that style..
 

lovelyboy9870

New Member
thank you for replying...

here's all the templates that has been changed by itself by some of the mods...
I havn't edited any of the files, it has been auto-edited by add-ons....

Templates download:
Code:
http://www.mediafire.com/?sharekey=a4f40616d031cacb5bf1f12f1ff3f30ae04e75f6e8ebb871

And can u plz tell me what kind of the mod is the below forum using?

jjwemr.jpg
 

EnigmaImpact

New Member
lovelyboy9870 said:
thank you for replying...

here's all the templates that has been changed by itself by some of the mods...
I havn't edited any of the files, it has been auto-edited by add-ons....

Templates download:
Code:
http://www.mediafire.com/?sharekey=a4f40616d031cacb5bf1f12f1ff3f30ae04e75f6e8ebb871

And can u plz tell me what kind of the mod is the below forum using?

jjwemr.jpg

If your talking about how they got the forums separated out like that, then its not a mod at all, just edited templates.
 

lovelyboy9870

New Member
Thanks EnigmaImpact.

I got ur point.

Now after playing around with the skin here's what I think the problem is....

Image Before :
122j3mc.jpg


But when I revert the Out-of-Date Custom Templates
mainly the forumhome_forumbit_level1_nopost from the control panel home as this is 3.7.4 skin I got the skin just like the vbulletin ones(see image below). Here's how it looks after reverting the forumhome_forumbit_level1_nopost template. It removes the forum and last post row and also the style smooth ending curves and collapsible icons are gone.

Image Afterwards:
2dl87k5.jpg


Any ideas? Here's my forumhome_forumbit_level1_nopost template code.

Code:
<if condition="!$show['collapsable_forums']">
<tbody>
</if>
	<tr>
		<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
			<if condition="$childforumbits">
			<a style="float:$stylevar[align=right]" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
			</if>
			<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
			<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
			<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
		</td>
	</tr>
<if condition="!$show['collapsable_forums']">
</tbody>
</if>
<if condition="$childforumbits">
<if condition="!$show['collapsable_forums']">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
</if>
$childforumbits
<if condition="!$show['collapsable_forums']">
</tbody>
</if>
</if>
 
Top