Quote:
Originally Posted by BRotondi
Question:
One I could use right now: Is there a way to collapse all User Infos at once, so there isn't even a white space?
|
If you refer to make the entire what's going on box collapsible, try this:
Forumhome template, find:
HTML Code:
<!-- what's going on box -->
<div id="wgo" class="collapse wgo_block">
<h2>
<span>{vb:rawphrase whats_going_on}</span>
</h2>
<div class="floatcontainer">
Replace with:
HTML Code:
<!-- what's going on box -->
<div id="wgo" class="collapse wgo_block">
<h2>
<a class="collapse" id="collapse_wgobox" style="position:static;margin-right:5px;margin-top:5px;" href="{vb:raw relpath}#top"><img src="{vb:stylevar imgdir_button}/collapse_40b.png" alt="" border="0" /></a>
<span>{vb:rawphrase whats_going_on}</span>
</h2>
<div class="collapse" id="wgobox">
<div class="floatcontainer" id="collapse_wgobox">
Then find:
HTML Code:
{vb:raw template_hook.forumhome_wgo_pos5}
</div>
</div>
<!-- end what's going on box -->
And replace (to close the added div above):
HTML Code:
{vb:raw template_hook.forumhome_wgo_pos5}
</div>
</div>
</div>
<!-- end what's going on box -->