Okay
  Public Ticket #1555664
Change color on mobile navigation menu
Closed

Comments

  •  1
    ericoye started the conversation

    Hi team,

    I noticed that by default the navigation menu on mobile is white in background color.

    I tried many ways but could not actually resolve it.

    Can you help?

  •  608
    WordPress replied

    Hi,

    You edit style css in child theme:

    header .header-center {
        background-color: #fff;
    }
    Thanks!

    Alex Vũ



  •  1
    ericoye replied

    Hi Alex,
    Is this the CSS style for Mobile header? or all the header?

  •  608
    WordPress replied

    Hi,

    Css in mobile header

    @media (max-width: 991px){
        header .header-center {
            background-color: #fff;
        }
    }


  •  1
    ericoye replied

    Now i have these CSS code:

    @media (max-width: 991px){
        header .header-logo img {
            width: 115px;
        }
    header .header-center {
        background-color: #000;
    }
    header {
        background-color: #000;
    }
    }

    But the Mobile header is still showing white in color.

  •  608
    WordPress replied

    Hi,

    You can clear cache browser



  •  1
    ericoye replied

    yeah, that is fine. What i mean is this, refer to the attachment.

  •  608
    WordPress replied

    Hi,

    You can add style css: 

    @media (max-width: 991px){
        header.header-v1{
            background-color: #000;
        }
    }
    Thanks,

    Alex Vũ