Quote:
Originally Posted by huntrKillr
My multiple forums do not line up correctly. the V.B.S. forum should be right under the main forum, yet it ends up in the left box. I am pretty sure I installed the them correctly. I am running the newest vB 3.6.8 with patch 2. What would be causing this issue? Thank you.
P.s. it happens on the fluid version too.
|
Finally figured out what's causing this. When you use descriptions in categories, the way vBulletin codes it, it puts the description in a new line. Changed it to use a SPAN instead of a DIV so it doesn't drop to a new line. I'll update the archive soon.
In
forumhome_forumbit_level1_nopost change:
Code:
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
to:
Code:
<if condition="$show['forumdescription']"><span class="smallfont"> - $forum[description]</span></if>