How to remove the border and heading from the currency selector on MOBILE

Hi, how can I remove the border and the “Country/region” heading from the currency selector on mobile?

Thanks,
Tim

Hi @CreatorTim

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
@media screen and (max-width: 768px){
h2#FooterCountryLabel {
    display: none !important;
}
.disclosure > button.disclosure__button::after {
    box-shadow: none !important;
}
}

Here is the result:

I hope this helps

Best,

Daisy

1 Like

Got it, thank you so much!