Removing social icons in sidebar on mobile in Dawn theme

Hi, I am using dawn theme and on desktop I have a header but on mobile I have a sidebar, but the social media icons show in the sidebar on mobile. Is there any way to remove it?

@jarydvisser Can you please send me store url?

Hi @jarydvisser ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

takatso.com

The sidebar only shows up on mobile

Hi @jarydvisser ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/component-menu-drawer.css->paste below code at the bottom of the file:
@media (max-width: 749px) {
    .menu-drawer__utility-links {
       display: none !important;
    }
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

2 Likes

Looking for this - it worked. It hides the social + user icons. Thank you for sharing this code.

Thank you, it worked for me, as well.