PDA

View Full Version : How to change color of individual forum titles in 4.0


WebEffects
01-24-2010, 02:31 PM
I've been able to follow the visual dictionaries, etc. to change most anything in VB4.0, but I'm stuck on how to change the forum title tect color. See attached screenshot. Its the blue text I want to change. Can anyone help?:confused:

BSMedia
01-24-2010, 09:16 PM
It uses the link color from AdminCp -> STyleVars -> Links

Unless you add custom CSS for it's class which for some reason is lacking out of the 68495724930 stylevar options already

vietfancy
01-24-2010, 10:28 PM
forumbits_aForum

adembaba
01-24-2010, 11:02 PM
forumbits_aForum

That changes all of the forumhead titles at once, not individually

BSMedia
01-25-2010, 03:49 AM
That changes all of the forumhead titles at once, not individually

Oh so you want to change the color for each one to a different one?

Then in that case you're going to have to manually edit the template and use the forumid as a selector

<a id="flink$forum[id]">Forum Title</a>

Then assign link CSS to each one like

#flinkX a {color: blue}
#flinkXX a {color: white}

Those variables are probably wrong but you should be able to get the idea from that.

adembaba
01-25-2010, 02:40 PM
Yes, thx for the info but that's looks hard to do for a noob like me :-(