• Hi,

    I’m trying to remove a search bar with the following css :

    .search-form {
    display: none;
    }

    I don’t seem to be able to get rid of it, any pointers?

    Thanks ??

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey @andyoshaughnessy,

    You may want to try this code instead:

    
    button#a11y-toggle-1 {
        display: none;
    }
    
    form#search-form {
        display: none;
    }
    

    The first part removes the icon from the menu, the second removes the search form that shows up if you click on the search.

    I hope this works for you, have a nice day,
    Andrija

    Thread Starter andyoshaughnessy

    (@andyoshaughnessy)

    Thank you, that was very helpful ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Strange search bar’ is closed to new replies.