on my website there is a currency converter in the corner, how can i remove the text that says “USD” and only show the flag? my website is safekeychains.com
HI @shopsk100
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
.doubly-wrapper .doubly-nice-select .current {
font-size: 0;
}
this works! but now there is a little space between the flag and the shopping bag icon, how would i be able to eliminate that space so theres no gap between them?
Hi @shopsk100
You can try to add this code to bellow the code you just added
.doubly-wrapper {
min-width: auto;
}