• Hey!

    So I have this site weareready.co, I would like to make the header menu font color black. It is black but only when I hover over it!

    Can’t pinpoint it in the style.css to change it.

    If someone could help out that’d be great!

    Thanks,

    Mo

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi createdbymo!

    This code below should work, if it doesn’t add !important like in the second example.

    /*this should work*/
    a.mn-has-sub {
        color: black;
    }
    
    /*add if not working*/
    a.mn-has-sub {
        color: black !important;
    }

    Let me know how that worked!

    Thread Starter createdbymo

    (@createdbymo)

    Hey bdanzer! Got it to work!

    Although under the events tab on the menu the background is a dark grey so people can’t read the font. Do you know how to make it a transparent bg so we can read the writing?

    Thanks!

    It appears that one of the rules is cancelling this out. This should work but like above if it doesn’t add !important at the end of it.

    .inner-nav ul li .mn-sub li a {
        color: #b0b0b0;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Menu Font Color’ is closed to new replies.