XF 1.2 Which property is this?

cmpe

Active member
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.

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
 
So I change the Text color for "Navigation Tab" under Header & Navigation but this does not change the color.

However, if I select underline, it does underline the link.

So the color is overridden somewhere.
 
Sadly not all things are in the Style Properties which is why extra.css is there. Is there any reason why you don't want to use extra.css?

Well, I'd like to keep it simple if possible and try to minimize duplication of the same CSS property. For this particular property, I was sure there would be one that I could just edit without overriding in extra.css.
 
Top Bottom