Question:
In my template it looks like this:
Code:
<vb:if condition="$forumbits">
{vb:raw template_hook.forumdisplay_above_subforums}
<div id="forumbits" class="forumbits">
<div class="forumhead">
<h2>
<span class="forumtitle">{vb:rawphrase subforums}</span>
<span class="forumthreadpost">{vb:rawphrase threads_posts} </span>
<span class="forumlastpost">{vb:rawphrase last_post}</span>
</h2>
</div>
<ol>
{vb:raw forumbits}
</ol>
</div>
{vb:raw template_hook.forumdisplay_below_subforums}
</vb:if>
This is a customized forum style, but it appears they've linked the display for above and below subforum in the same $forumbits condition?
When I made the changes listed here, all it did for me was move the forum title to where the thread is, and did not move the threads at all.
I am assuming the way this style is coded I cannot do this because I am moving both parts instead of the sub-forums?