• Resolved bshawn112

    (@bshawn112)


    Hello,

    The default header menu text is purple and I’d like to know what setting or css code I need to implement to make all the text(menu items) on the header red. Also, while in responsive mode and looking at the drop down menu, the background color is also purple and I wanted to know if there was a way to change that to red as well.

    Thank you for any help you can give.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @bshawn112,

    We can change header text color and mobile menu color with the help of custom css. Please apply the below given css under Appereance -> Customize -> Additional Css-

    #header .nav ul li a {
    color: red !important;
    }
    }
    @media screen and (max-width: 720px){
    .toggle a {
    background: url(assets/images/responsive_menu.png) no-repeat right center red !important;
    }
    }
    

    I hope the above was helpful.

    Kind regards,

    Manoj

    Theme Author VW THEMES

    (@vowelweb)

    Hello @bshawn112,

    Add the below CSS code in Additional CSS.

    Go to Dashboard >> Appearance >> Customize >> Additonal CSS >> Paste the below CSS here >> Publish it.

    #header .nav ul li a {
    color: red;
    }
    @media screen and (max-width: 720px)
    .toggle a {
    background: url(assets/images/responsive_menu.png) no-repeat right center red;
    }
    }

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Header text color change and mobile menu color change’ is closed to new replies.