• Resolved John Carson

    (@whiskeydragon1)


    My client doesn’t like the background color of the menus in the twentytwenty theme which is a maroon type color. They want it to be a light green hex value of #94c83d

    They are also vocalizing their displeasure about the font size as it is to small so I need to make it larger, and because of the light green I might need to manipulate color.

    I can’t figure out how to do this and the customizer doesn’t support this as far as I can figure out.

    I am using a child theme that I created, so if someone can point me to the CSS classes I need to edit to make this happen would be much appreciated.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • I am not sure I can help. Regarding the background-color of the menu you can try this code in your child theme :

    #site-header {
    background: #94c83d; !important;
    position: relative;
    }

    Regarding the size of the menu items :

    .primary-menu li {
    font-size: 24px; /* instead of inherit */
    line-height: 1.25;
    position: relative;
    }

    Thread Starter John Carson

    (@whiskeydragon1)

    Thanks for the assist, I got everything worked out to what I need.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘need to change background color and font size and color in menus’ is closed to new replies.