Log in

View Full Version : vBulletin 4 Request - Change background color of forum header based on forum ID


Raptor
10-25-2017, 03:54 AM
I've seen this mod for 4.1.x but does not work on 4.2.x

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

I have forums with plain color background in forumhome - basically want a couple of them to have a different color background

Like so:

https://vborg.vbsupport.ru/external/2017/10/4.png

--------------- Added 1508911143 at 1508911143 ---------------

https://vborg.vbsupport.ru/external/2017/10/5.png

--------------- Added 1508911464 at 1508911464 ---------------

This is the section of relevant code in the html


<div class="forumhead foruminfo L1 collapse">
<h2>
<span class="forumtitle"><a href="forumdisplay.php/324-Gamers">Gamers</a></span>
<span class="forumthreadpost">Topics / Posts&nbsp;</span>
<span class="forumlastpost">Last Post</span>

<a class="collapse" id="collapse_c_cat324" href="index.php#top"><img src="images/collapse_80b.png" alt=""></a>

</h2>


</div>



--------------- Added 1508911541 at 1508911541 ---------------

CSS is generated dynamically


.forumhead {
background: #00a651 none ;
_background-image: none;
padding: 0;
font: normal 24px 'Montserrat', sans-serif!important;
color:#ffffff;
clear:both;
margin-top: 8px;
float: left;
border: 0px solid #8ecb30;
width: 100%;
-moz-border-radius-topright: 0px;
-moz-border-radius-topleft: 0px;
-webkit-border-top-right-radius: 0px;
-webkit-border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-top-left-radius: 0px;
}

MarkFL
10-25-2017, 05:15 AM
You can add something like this to your "additional.css" template:

#catXX .forumhead {
background: #RRGGBB !important;
}

where XX is the forumid and #RRGGBB is the background color you want. :)

TTayfun
12-28-2017, 03:02 PM
thank you MarkFL. :up:

Raptor
11-19-2019, 03:20 AM
How funny. I just searched for this solution as I needed it for a site I'm working on and this is the first answer I found - my own question 2 years ago - and it works lol

How did I miss this? Thanks, MarkFL !

A quick question which I'm sure you can answer - I'd like to change the font color for those specific forums too so it matches the cat color.

Thanks!

PinkMilk
11-19-2019, 03:53 PM
#catXX .forumhead {
background: #RRGGBB !important;
color: #RRGGBB !important;
}