Okay
  Public Ticket #3410784
Header search on mobile
Closed

Comments

  •  3
    Ale started the conversation

    Hello! 

    I can't seem to deactivate header search on mobile. On desktop it already ha been deactivated, but on mobile it's causing some elements to be over each other. 


    Tks 

    Attached files:  Screenshot_20230710_123458_Chrome.jpg

  •  8,839
    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 (min-width: 1px) and (max-width: 999px) {
        #top .mobile-search {
            display: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  3
    Ale replied

    It worked! 

    Thanks a lot!