Logged Out
Create an Account
Login:
Password:

Forgot your password?
Guild Recruitment Mouseover/Hover

Guild Recruitment Mouseover/Hover
[Back to Index]
Thread Tags
Primary: [Tickets]
Secondary: None

Guild Recruitment Mouseover/Hover
Go To This Ticket's Page
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
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.


--
It's all in the reflexes.
Awesome! Thanks for the speedy response!


[Back to Index]