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:
Add this code in your base.css file:
.menu-drawer__utility-links {
display: none;
}
If I just wanted the region selector or just the social media icon(s) how could I go about doing that?
Region selector:
.menu-drawer__localization.header-localization {
display: none !important;
}
Social media icons:
ul.list.list-social.list-unstyled {
display: none !important;
}
Thank you!