How can I change the currency frame color in the Dawn theme?

Dear all, at this page:

https://bioacquabeauty.com/

When you switch currency the frame is white and I don’t know why.
Can you please help me to reset it?

Thank you.

1 Like

Hi @BioAcqua

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.disclosure__list-wrapper span.localization-form__currency, .disclosure__list-wrapper a.disclosure__link {

color: black !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Great it worked!
I’ve tried to add inside the brackets

border-radius:15px;

to round the cornes but it doesn’t work, do you know why?

1 Like

You can try with this code:

.header-localization:not(.menu-drawer__localization) .disclosure__list-wrapper {
border-radius: 10px;
}

Simply wonderful ti works! Thank!

1 Like

You are welcome @BioAcqua

Hi @BioAcqua

Do you mean like this?

Or the frame of each currency?

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  • 1st design.
.desktop-localization-wrapper .localization-selector+.disclosure__list-wrapper {
    border:2px solid #25c8bb !important;
}
  • 2nd design
.desktop-localization-wrapper .localization-selector+.disclosure__list-wrapper li {
    border:2px solid #25c8bb !important;
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!