Ahhh... those are collapses for each individual forum block. In my tests it is remembering individual collapsed blocks between pages which is good.
But I've never seen an option to disable them- do you have them disabled on the Forum Index sidebar somehow?
Looking at the various block_* templates...
This one for example:
Code:
<li>
<div class="block smaller">
<div class="blocksubhead">
<a class="collapse" id="collapse_block_html_{vb:raw blockinfo.blockid}" href="{vb:raw relpath}#top"><img alt="" src="{vb:stylevar imgdir_button}/collapse_40b.png" id="collapseimg_html_{vb:raw blockinfo.blockid}"/></a>
<span class="blocktitle">{vb:raw blockinfo.title}</span>
</div>
<div class="widget_content blockbody floatcontainer">
<div id="block_html_{vb:raw blockinfo.blockid}" class="blockrow">
{vb:raw content}
</div>
</div>
</div>
<div class="underblock"></div>
</li>
The relevant code is in
red. There is no conditional around it so I'm pretty sure no option exists to disable them.
[s]You would need to edit each block_ template and remove the code in red.[/s]
EDIT- Better solution in post #85