PDA

View Full Version : Background new notification toplink color


benpaul10
02-08-2011, 08:44 AM
Hello everybody,

I am trying to change the background color of the notification link when there are new ones.

http://img191.imageshack.us/img191/4123/notificationbkgrnd.png

I have looked in all varstyle colors and I couldn't find it.. I've even searched the color in all CSS templates and couldn't find it... If someone could help me =)

Thanks !

StudentCreche
08-04-2011, 12:01 PM
bump!!!

RobbieZ
08-04-2011, 12:28 PM
It was controlled by this stylevar..

Navbar Background Notification

StudentCreche
08-04-2011, 12:47 PM
Fantastic! Ok next question....

How do you change the font size for "notifications" ??

RobbieZ
08-04-2011, 01:10 PM
Only the word 'notifications'?

Search in vbulletin-chrome.css for this

.notifications {
font-size:{vb:stylevar small_fontSize};
color: {vb:stylevar toplinks_link_color};
-moz-border-radius-bottom{vb:stylevar left}: 5px;
-moz-border-radius-bottom{vb:stylevar right}: 5px;
}

Change the font-size

Your are basically unbracketing the font-size stylevar call to your own unique size, changing the stylevar would change anything else it would be linking it to. Changing the source is a much better option I feel.

StudentCreche
08-04-2011, 01:16 PM
Seriously, you're too good. Thanks!