This is the color of the links in the navigation tab like at the top where it shows "Home", "Forums", "Buy XenForo"...
I would like to change the color when it's normal, when you hover, etc but no matter which property I change (and override) in style property, it stays the same color.
I know I can override in EXTRA.css but woudl like to maintain the colors in the style properties section if possible.
css.php:3651
I would like to change the color when it's normal, when you hover, etc but no matter which property I change (and override) in style property, it stays the same color.
I know I can override in EXTRA.css but woudl like to maintain the colors in the style properties section if possible.
HTML:
/* ---------------------------------------- */
/* unselected tab, popup closed */
.navTabs .navTab.PopupClosed .navLink
{
color: rgb(238, 255, 255);
}
.navTabs .navTab.PopupClosed:hover
{
background-color: rgb(238, 255, 255);
}
Code:
.navTabs .navTab.PopupClosed .navLink
css.php:3651