For some reason, the toggle button covers up part of the search icon on the mobile screen. I tried to get rid of the icon altogether, but that also got rid of the logo which is not intended.
andrewwinkler
You can try this custom CSS:
@media only screen and (max-width: 984px) { #header #toolbar { display: none; } }
Perfect. Thanks a lot.