So i am designing my website and i cannot seem to change the color of the currency drop down, is there any code that could help fix this? I would like it to be white
Website : Desirestreetwear.co
So i am designing my website and i cannot seem to change the color of the currency drop down, is there any code that could help fix this? I would like it to be white
Website : Desirestreetwear.co
Please add the following code at the bottom of your CSS file.
.localization-form:only-child .localization-form__select{
color: #fff;
}
Hope this helps.
@Desire4 Please follow below steps to change the color of the drop down to “White”. Let me know whether it is helpful for you.
To only change the drop down color like below screenshot:
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__button {
color: #FFFFFF !important;
}
(OR)
To change the background color and dropdown color like below screenshot:
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__button,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list {
background: #ffffff;
}
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__button .icon-caret,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list .disclosure__item .disclosure__link,
.footer__content-bottom-wrapper .footer__localization .disclosure .disclosure__list .disclosure__item .disclosure__link .localization-form__currency {
color: #000000 !important;
}
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.