Want to change gradient color of menu bar

  • Unknown's avatar

    Hello, I would like to change the color of the grey gradient bar behind the top navigation. I purchased the $30 upgrade to edit the CSS. Can someone help me with the code I need to change that gradient color?

    The blog I need help with is: (visible only to logged in users)

  • Could you try adding the following CSS snippet to your Custom CSS:


    #masthead #access {
    background:-webkit-gradient(linear, left top, left bottom, from(#2E800E), to(#49C718));
    background:-moz-linear-gradient(top, #2E800E, #49C718);
    background:linear-gradient(-90deg, #2E800E, #49C718);
    }

    You can look for specific colors thanks to a color picker like this one.

  • The topic ‘Want to change gradient color of menu bar’ is closed to new replies.