How to change font color?

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #22996
    Sander N
    Participant

    Is this done through CSS or is there another way to do this?

    #23002
    Veena
    Moderator

    Yes you can change the font color with the help of custom CSS .

    #content {
        color: #007FFF;
    }
    

    You can use the above custom CSS .

    #23006
    Sander N
    Participant

    Thank you, but can you help me exactly where to change the font color for top header and header menu?

    #23008
    Veena
    Moderator

    You can use the below custom CSS –

    #top-header-area ul.contact-info > li, #top-header-area ul.contact-info > li > a, #top-header-area #header-menu > ul.menu > li > a {
        color: #fff;
    }
     #top-header-area ul.contact-info li i, #top-header-area ul.contact-info li a {
        color: #fff;
    }
    
    #23044
    Sander N
    Participant

    Great, thank you

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to change font color?’ is closed to new replies.