• Resolved Ricci1

    (@ricci1)


    I just started using WordPress. I am trying to change the navigation text color in the footer. Currently, it is light grey and only turns orange when you hover over it. How can I make the color of these navigation buttons to remain orange?

    Though I know some html, I don’t know CSS and thus, have no clue how to do this.

    FYI: I am using Smart Start Child Theme.

    Your help would be greatly appreciated!

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Ricci,

    Do you can post link to your site here?

    Thread Starter Ricci1

    (@ricci1)

    Thanks, NamLee!

    It’s https://www.hannahsanford.com

    Hi Ricci,

    Try adding this to child theme style.css file

    #footer #menu-footer-navigation li a {
        color: #f15a23;
    }
    
    #footer #menu-footer-navigation li a:hover {
        color: #868686;
    }

    I use very specific selector so it will override default style.

    #footer #menu-footer-navigation li a {color: #f15a23;} is the color of navigation in footer without hover

    #footer #menu-footer-navigation li a:hover {color: #868686;} is the color of navigation in footer when you hover to it. So feel free to use any color you want until you get your result.

    Good luck!

    Thread Starter Ricci1

    (@ricci1)

    Hi NamLee,

    Perfect. Thanks. It worked!

    I truly appreciate all your help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Foorter Color’ is closed to new replies.