Disabling search button?

How would I go about completely removing the search button and not having the icon appear in the top bar.

You would have to remove the button using CSS as there isn’t a setting for it, but search is probably the most helpful component of a busy forum. Do you have a specific use case for disabling it?

2 Likes

I’m trying to keep the number of users/threads limited, and I just don’t think the search bar is necessary.

Right now I’m trying to add a[id="search-button"] { display:none; } to the CSS of the light theme, but that doesn’t seem to work.

The rule needs to be more specific:

.d-header-icons .icon#search-button {
    display: none;
}
5 Likes

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