How To Remove Country Selector And Social Media Icons On The Drop Down Menu For Mobile (Dawn Theme)

Solved

How To Remove Country Selector And Social Media Icons On The Drop Down Menu For Mobile (Dawn Theme)

MMast
Trailblazer
182 1 25

Thanks in advance!

I am looking to remove the country/region selector and social media icons in the drop down menu on the mobile site view. Example shown below.

Example:

Screenshot 2024-03-21 150630.png

Accepted Solution (1)

Spac-es
Shopify Partner
406 119 153

This is an accepted solution.

Add this code in your base.css file:

.menu-drawer__utility-links {
  display: none;
}
Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!

View solution in original post

Replies 4 (4)

Spac-es
Shopify Partner
406 119 153

This is an accepted solution.

Add this code in your base.css file:

.menu-drawer__utility-links {
  display: none;
}
Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!
MMast
Trailblazer
182 1 25

If I just wanted the region selector or just the social media icon(s) how could I go about doing that?

Spac-es
Shopify Partner
406 119 153

Region selector:

.menu-drawer__localization.header-localization {
  display: none !important;
}

Social media icons:

ul.list.list-social.list-unstyled {
  display: none !important;
}

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!
MMast
Trailblazer
182 1 25

Thank you!