• hi there!

    i am not able to change my submenu color (“Blog”) in my website,
    for strange reasons in the theme there is no option for this.

    Can anyone tell me whats the correct custom css?

    Many thanks for your help 🙂

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try this , Customizer –> Additional CSS :

    .main-navigation .sub-menu a {
        font-size: 13px;
        padding: 12px 14px;
        color: red;
    }
    Thread Starter andreasyeah

    (@andreasyeah)

    hi Corrina!

    thank you, but actually this changed the text color, i’ve forgot to mention i would like to change the bg color into black.

    Yup, that would be important! Lol

    Try this :

    .main-navigation .sub-menu {
        display: block;
        box-shadow: 0 2px 5px rgba(0,0,0,.2);
        position: absolute;
        right: 0;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        z-index: 999;
        transition: all .3s;
        background: black;
        width: 230px;
        padding: 0;
    }
    Thread Starter andreasyeah

    (@andreasyeah)

    that works perfectly!!!!

    Thank you very much!! 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘change submenu color’ is closed to new replies.