How to Disable Login/Signup button on the mobile menu on Sahara theme?

Hey,

How to disable all login/signup pages on Sahara theme? Especially the one on the mobile navigation drawer.

1 Like

Hello there.

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
@media (max-width:992px){
.drawer__utils-item {
display: none;
}
}
1 Like