PDA

View Full Version : Forum Home Enhancements - Remove "Icon Legend" Box on FORUMHOME


Special Pages
03-03-2011, 10:00 PM
DEMO (http://thediscussioncafe.com)

Go to AdminCP>Styles & Templates>Style Manager>{Select Style}>Edit Template>FORUMHOME
Find:
<div id="wgo_legend" class="wgo_subblock">
<h3><img src="{vb:stylevar imgdir_misc}/legend.png" alt="{vb:rawphrase icon_legend}" />{vb:rawphrase icon_legend}</h3>
<div>
<dl id="icon_legends" class="icon_legends">
<dt><img src="{vb:stylevar imgdir_statusicon}/forum_new-16.png" alt="{vb:rawphrase new_posts_forum}" /></dt><dd>{vb:rawphrase new_posts_forum}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/forum_old-16.png" alt="{vb:rawphrase no_new_posts_forum}" /></dt><dd>{vb:rawphrase no_new_posts_forum}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/category-16.png" alt="{vb:rawphrase category_forum}" /></dt><dd>{vb:rawphrase category_forum}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/forum_link-16.png" alt="{vb:rawphrase link_forum}" /></dt><dd>{vb:rawphrase link_forum}</dd>
<vb:if condition="$vboptions['pt_hasprojectforums']">
<dt><img src="{vb:stylevar imgdir_statusicon}/project_new-16.png" alt="{vb:rawphrase project_forum}" /></dt><dd>{vb:rawphrase project_forum}</dd>
</vb:if>
</dl>
</div>
</div>
And remove it all.

I hope that helps!

OldSchoolDSL
03-04-2011, 05:18 AM
Kind of got to it before you

https://vborg.vbsupport.ru/showthread.php?t=258498

Boofo
03-04-2011, 12:59 PM
Adding this to the additional.css template will do the same thing without any template edits:

/* Remove Icon Legend from FORUMHOME */
#wgo_legend.wgo_subblock.section {
display: none;
}

OldSchoolDSL
03-04-2011, 01:46 PM
Adding this to the additional.css template will do the same thing without any template edits:

/* Remove Icon Legend from FORUMHOME */
#wgo_legend.wgo_subblock.section {
display: none;
}

Yes, we've had this debate before.

Removing the code means you'll need to re-do it every time you update. But it means less code to process.

Adding your code, does remove things and you do not need to re-apply it when you update. But it is more code to process.

To each their own.

Boofo
03-04-2011, 02:03 PM
You are kidding, right? The code processed is so minuscule there is no way to measure it. But, I did get a good chuckle out of that argument. ;)

puertoblack2003
03-04-2011, 03:46 PM
Adding this to the additional.css template will do the same thing without any template edits:

/* Remove Icon Legend from FORUMHOME */
#wgo_legend.wgo_subblock.section {
display: none;
}


thanks boofo, this is alot easier...:)

Special Pages
03-04-2011, 05:30 PM
Kind of got to it before you

https://vborg.vbsupport.ru/showthread.php?t=258498

Sorry mate. I didn't see that.

OldSchoolDSL
03-05-2011, 01:56 AM
You are kidding, right? The code processed is so minuscule there is no way to measure it. But, I did get a good chuckle out of that argument. ;)

We'll agree to disagree (again).

And I would ask that you respect my opinions, as much as others have given you the same respect.

OldSchoolDSL
03-05-2011, 01:57 AM
Sorry mate. I didn't see that.

No worries. I think I'm guilty of double posting a modification once too. Yours maybe titled a little better and thus, helpful for those who search and find it. :)

Boofo
03-05-2011, 03:26 AM
We'll agree to disagree (again).

And I would ask that you respect my opinions, as much as others have given you the same respect.

First, there was no disrespect anywhere. Second, an opinion based on very unsound logic is not an opinion shared by many.

Special Pages
03-05-2011, 03:31 AM
No worries. I think I'm guilty of double posting a modification once too. Yours maybe titled a little better and thus, helpful for those who search and find it. :)

Yes thank you. I actually had to find it myself because I forgot to search it on Google. :P I should've checked before posting. The fault is on my part.

elwachiman
03-23-2011, 04:34 PM
Adding this to the additional.css template will do the same thing without any template edits:

/* Remove Icon Legend from FORUMHOME */
#wgo_legend.wgo_subblock.section {
display: none;
}

THANKS BOOFO ...

westquad
07-30-2011, 01:18 PM
Thanks

ToddDuquette
02-04-2012, 05:33 AM
*Vouch!*

Works perfect on Greenfox skin for vb 4.1.9!

Thank you!