The text under my footer is not pure white

My text under the footer is not pure white and it tends to the background color both in the desktop that in the mobile version. How can I fix this?

1 Like

Hello there,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.footer__localization h2 {
color: #fff;
}
.localization-form__select:after {
border: 1px solid #fff;
box-shadow: none!important;
}

It worked only after putting it in the footer personalized css in the theme editor. Any reason it did not work on base.css?