Change accent color for mobile only

  • Unknown's avatar

    Hi –

    I’m trying to change the navigation bar color for the mobile view. For some reason, the navigation bar is black on my desktop but when I go to mobile it is green. I’d like it to be black on mobile as well. Is this something I can fix with CSS code?

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

  • Unknown's avatar

    Hi,

    I will be glad to point out what is causing this:

    .masthead .branding {
       background-color: #1f841f;
    }

    On smaller device you have this:

    @media only screen and (max-width: 782px) {
    .masthead .branding {
        position: relative;
        top: 0;
        left: 0;
        right: auto;
        background: #FFEE00;
    }
    }

    ————————————————–
    One possible solution might be to set both background color to black

    .masthead .branding {
       background-color: #000000;
    }
    
    @media only screen and (max-width: 782px) {
    .masthead .branding {
        position: relative;
        top: 0;
        left: 0;
        right: auto;
        background: #000000;
    }
    }
  • Unknown's avatar

    This worked! Thank you so much! :-)

  • Unknown's avatar

    No problem, glad to help :)

  • The topic ‘Change accent color for mobile only’ is closed to new replies.