Hi, how can I remove the border and the “Country/region” heading from the currency selector on mobile?
Thanks,
Tim
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!