Hi guys, how can I remove the underline when I click on the currency selector in the header on MOBILE?
Here is my store URL: https://1049xn-ya.myshopify.com/
Thanks a lot.
Tim
Hi guys, how can I remove the underline when I click on the currency selector in the header on MOBILE?
Here is my store URL: https://1049xn-ya.myshopify.com/
Thanks a lot.
Tim
Hi @CreatorTim
I hope this answer will be helpful to you.
Please follow the following instructions:
.header-localization .disclosure .localization-form__select:hover {
text-decoration: unset !important;
}
Here is the result.
Best,
Daisy - Avada Support Team.
Sorry, please try this code instead:
@media screen and (max-width: 768px){
h2#HeaderCountryMobileLabel + .disclosure button.disclosure__button.localization-form__select.localization-selector span {
text-decoration: none !important;
}
}
Hello @CreatorTim ,
Here are the steps to apply the necessary changes in your Shopify store:
button.disclosure__button.localization-form__select.localization-selector.link.link--text.caption-large:hover {
text-decoration: none !important;
}
Let me know if you need further assistance!