Turn off search in Dawn theme

How do you remove the search button in the Dawn theme?

You can either remove it from the hbs template or via code injection.
For the CSS version you can add this in code injection:

<style>
button.menu-item-button[data-modal="search"] {
    display: none;
}
</style>

Thank you so much! This did it.

1 Like