Is there a way i can remove/hide the currency selector icon from my store face on mobile , but still keep it on my store face on desktop???
Store URL: https://emp7re.com
Any help would be greatly appreciated.
Is there a way i can remove/hide the currency selector icon from my store face on mobile , but still keep it on my store face on desktop???
Store URL: https://emp7re.com
Any help would be greatly appreciated.
@JHUTCHESSON1707 , do this to fix it in 20 seconds:
@media (max-width: 767px){
.doubly-wrapper{
display: none !important;
}
}
Please let me know whether it works.
Kind regards,
Diego
Please add the following code at the bottom of your assets/theme.scss.liquid file.
@media only screen and (max-width: 749px) {
.doubly-wrapper{ display: none; }
}
Hope this works.
hello @JHUTCHESSON1707
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
@media only screen and (max-width: 749px) {
.doubly-wrapper{ display: none; }
}