Hi, how can I remove the border and the “Country/region” heading from the currency selector on mobile?
Thanks,
Tim
Issue: User wanted to remove the border and “Country/region” heading from the mobile currency selector in their Shopify store.
Solution provided:
display: noneOutcome: The solution was confirmed working by the original poster. The CSS successfully removed both the heading text and border styling from the mobile currency selector.
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:
@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
Got it, thank you so much!