Navbar search icon disable

Hello, i have a login site and was wondering how i can disable the search icon from the frontpage where users login? Since there is nothing they can search for without being logged in. Thanks in advance

Figured it out, here is the CSS code if anyone needs it.

.page-id-??? .x-btn-navbar-search {
display: none !important;
}

just add the page id of the page you want to remove the search icon from

Hello Tom,

Thanks for posting in! We are just glad that you have figured it out a way to correct the said issue.

Just an alternative to your solution, you may also use .logged-in class like this:

body .x-btn-navbar-search {
  display: none !important;
}

body.logged-in .x-btn-navbar-search {
  display: block !important;
}

This code will ensure that only the logged-in user can see search button.

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.