hello everyone how can i change the color of the currency button in my footer with code in the picture is show what i mean my store url is: https://distinctz.com/
Topic summary
A user seeks to change the color of the currency/country selector button in their footer using custom code.
Solution provided:
- Navigate to Online Store β Edit Code
- Open the
base.cssfile - Add custom CSS targeting
.localization-form__select button - Use
background: red !important;(replace βredβ with desired color) - Save changes
The discussion includes a screenshot showing the specific footer element requiring modification. This is a straightforward CSS customization task for Shopify store design.
Hi,
- Go to online store
- Click on edit code
- open your base.css file
- Paste the below code and save
.disclosure__button.localization-form__select {background: red !important;}
Change the red to the color code you desire.
1 Like
