Logged Out
Create an Account
Login:
Password:

Forgot your password?
Guild Recruitment Mouseover/Hover


Back to the Tickets List

Guild Recruitment Mouseover/Hover
Creator Stasya
Public or Private Public
Private tickets are only accessible to you and to DKPSystem.com staff
Public Tickets are visible to everyone)
Status Closed
Type Support
Section of the Site Advanced Layout Options and CSS
Urgency (1 votes)
Rating (0 votes)
Description:
Is there a way to change the text and background color on the mouseover text in the Currently Recruiting menu?

It's defaulting to black text on bright yellow, whereas the progression mouseover colors are white on grey. Is there a way to change the default colors? It doesn't appear to be part of the default stylesheet unless I'm just missing it.
Official DKPSystem.com Comments
No official comments yet

User-Submitted Comments
These posts are also available on the forum with more features. This page is intentional simplified

View this info on the forum
[You must be logged in to post comments]
5776 days ago
Chops Said:
There is now. Thanks for the suggestion.

I've added a class called "tooltip_popup", so you can reference that tooltip with:
div.tooltip_popup{

}

Make SURE to use !important for those attributes that need overwriting.

For example to change the color to purple on green:

div.tooltip_popup{
	color:purple !important;
	background:green !important;
}


The !importants will override the embedded style in the HTML.
[You must be logged in to reply]
5776 days ago
Stasya Said:
Awesome! Thanks for the speedy response!
[You must be logged in to reply]