Okay
  Public Ticket #2584115
Menu font color change on mobile only
Closed

Comments

  • everyhomeforchrist started the conversation

    Is there a way to change the menu font color (For hamburger and search icon) on mobile only? We're utilizing a different header design for mobile users, and would like the header icons to be black rather than white that they are on the main site. Thanks!

  •  8,849
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (max-width: 999px) and (min-width: 1px) {
        #header-outer .row .col.span_9 {
            filter: invert(1);
        }
    }

    Thanks


    ThemeNectar Support Team