Log in

View Full Version : Forum Home Enhancements - Collapse the "What's Going On?" Block


gezuvor
01-29-2012, 11:00 PM
Hi all,

I was struggling with a way to add the collapse button to my What's Going On? block and found an Article (https://vborg.vbsupport.ru/showthread.php?t=221565) by cellarius (https://vborg.vbsupport.ru/member.php?u=109187) that got me on the right track.

That was a good start, but I am a little OCD and did some additional fiddling to make it as vB-compliant as possible. Once I had it done and tested, I figured I would share with the rest of the community with the expectation that somebody else would want to use it to.

There is one edit to FORUMHOME and some new CSS, but that is it.

I performed this modification on a stock 4.1.10 installation, but it should work on any of the 4.1.x versions. If you have a custom theme/skin, some additional work may be required but the concept is the same...

Anyway, here goes!

In FORUMHOME, look for:

<h2 class="blockhead">{vb:rawphrase whats_going_on}</h2>
<div class="blockbody formcontrols floatcontainer">


Replace with:

<h2 class="blockhead">
<span>{vb:rawphrase whats_going_on}</span>
<vb:if condition="!$show['collapsable_forums']">
<a class="collapse" id="collapse_whats_going_on" href="{vb:raw relpath}#top"><img src="{vb:stylevar imgdir_button}/collapse_40b.png" alt="" /></a>
</vb:if>
</h2>
<div id="whats_going_on" class="blockbody formcontrols floatcontainer">



Open additional.css and add this to the bottom (or where it seems to best fit):

.wgo_block .blockhead a.collapse {
position: absolute;
top: {vb:math {vb:math {vb:math {vb:stylevar padding}+{vb:math {vb:stylevar mid_fontSize}*{vb:stylevar line_height}}-13}/2}+1};
}

.wgo_block .blockhead a.collapse img {
/* values are based on the image */
position:absolute;
{vb:stylevar right}: -{vb:math {vb:stylevar padding} * 0.6};
display:block;
width:13px;
height:13px;
overflow:hidden;
float: {vb:stylevar right};
clear: {vb:stylevar left};
}


That's it, you're done!

I hope this is useful and I welcome feedback!

foudu1030
01-30-2012, 06:08 PM
Any screenshot ? :)
Thanks

gezuvor
01-30-2012, 06:42 PM
It's pretty basic, but I added some screenshots for you!

foudu1030
01-30-2012, 07:49 PM
Thanks, Installed !
(Sorry, but I speak not good english)

prandah
01-30-2012, 08:50 PM
installed
work with 4.1.10

abdobasha2004
01-31-2012, 09:41 AM
nice idea
but little bit complicated to do

billstelling
02-02-2012, 06:41 AM
complicated.. that's funny.. This is an easy template mod.

Great job with this one!

BlueCheri
02-02-2012, 06:51 AM
Good work, installed.

Working fine.

Thanx

Taurus1
02-02-2012, 08:48 AM
Really great work! Works perfect. Thanks.

alasiri
04-29-2012, 04:32 AM
great idea thanks ...

Calystos
06-04-2012, 07:23 AM
If anyone uses the Nexia's Forum Sidebar Everywhere (https://vborg.vbsupport.ru/showthread.php?t=280484) product make sure to also edit the FORUMHOME_NEX_SIDEBAR template too! Else it'll be ignored and the WGO box will use the non-collapsible format.

Confirmed to work on vB v4.2.0, working great, thanks!

faisaly.com
06-04-2012, 11:04 AM
Works perfect vb4.1.11 thanks for the template edit...

NTT
08-26-2012, 07:36 PM
Works perfect vb4.2.0 PL2

Naijasite
02-19-2013, 10:25 PM
how do i make it to collapsed by default during page load. i noticed i have to click on the collapse button before it will collapsed.

Dorgham
02-25-2013, 05:40 PM
Good job :)

Naijasite
04-04-2013, 10:32 PM
how do i make it collapse on page load for every user by default?

VonDoom
04-22-2013, 03:56 AM
how do i make it collapse on page load for every user by default?
+1 for this request.. Im using sidebar blocks to replace most of WGO but i didnt want to remove it permanently so loading it collapsed would be a plus under such circumstances..

stevieb
07-31-2013, 08:38 PM
I found the button to collapse too high, so I literally added the following in the additionalcss which aligns it perfect in the middle of the block:

top:-5px;


Full code (additionalcss)

.wgo_block .blockhead a.collapse {
position: absolute;
top: {vb:math {vb:math {vb:math {vb:stylevar padding}+{vb:math {vb:stylevar mid_fontSize}*{vb:stylevar line_height}}-13}/2}+1};
}

.wgo_block .blockhead a.collapse img {
/* values are based on the image */
position:absolute;
{vb:stylevar right}: -{vb:math {vb:stylevar padding} * 0.6};
display:block;
width:13px;
height:13px;
overflow:hidden;
top:-5px;
float: {vb:stylevar right};
clear: {vb:stylevar left};
}