As you know, we have integrated a search bar on all themes of our website services!
However, we also know that some of you may not want this search bar on your website.
While waiting for the next update that will allow you to remove the search bar with a simple button, you can already remove it by easily editing the code of your radio website.
Don't worry, there's nothing complicated and everything is explained in this tutorial!
Theme 1
You will simply need to head over to Configuration > General Settings and enter this code in the Header code/tag area in your website admin:
<style type="text/css">
.searchform.searchform-menu {
display: none;
}
</style>
Theme 2
You will simply need to head over to Configuration > General Settings and enter this code in the Header code/tag area in your website admin:
<style type="text/css">
#header ul.sf-menu li:nth-last-child(2), #search-form-mobile {
display: none;
}
</style>
Theme 3
Head over to Appearance > Design and click on "edit design online". Then go the the Advanced tab and enter this code under Custom CSS.
#search-form, .searchform-mobile {
display: none;
}
Theme 4
Head over to Appearance > Design and enter this code in the Custom CSS area.
#search-form, #fakeSearchButton {
display: none !important;
}