• Resolved bethplummer

    (@bethplummer)


    When viewing on a mobile device I need to change the background color for the mobile menu to #79c9e0 or the font color to #fff. I’ve tried targeting via media query but that doesn’t seem to be working.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @bethplummer ,

    Could you please let us know how have you tried using media queries?

    It will be great if you explained with the steps and code snippets you tried.

    try adding this code to customize css

    
    @media screen and (max-width: 1024px)
    {
    
    .main-header .sider.left, .main-header .sider.right, .main-header .left .menu-close, .main-header .right .menu-close, .mobile-menu-active .sider.overcenter {
        background-color: #fff !important;
    }
    }
    Thread Starter bethplummer

    (@bethplummer)

    Thank you. That worked. I left off one of the } at the end in the code I was trying.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CSS help to change color’ is closed to new replies.