Hi,
I need to change the colours of the text ‘Country & Reigon’ from Black to White in my footer.
Also the white button box beneath it should have the Pink text that is shown elsewhere on the site.
Please help me achieve this - https://ultrapads.co/
Hi,
I need to change the colours of the text ‘Country & Reigon’ from Black to White in my footer.
Also the white button box beneath it should have the Pink text that is shown elsewhere on the site.
Please help me achieve this - https://ultrapads.co/
Hello @AAABARTON1 , to change the colours of the text ‘Country & Reigon’ from Black to White in footer.
Please follow these steps to add this CSS code:
localization-form h2#FooterCountryLabel {
color: #fff;
}
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.
Hey @AAABARTON1
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
To change the colours of the text ‘Country & Reigon’ from Black to White in footer.
Please follow these steps to add this CSS code:
localization-form h2#FooterCountryLabel {
color: #fff;
}
To add the white button box beneath it should have the Pink text,
Please follow these steps to add this CSS code:
.localization-form__select:before,
.localization-form__select:after{
content: unset;
}
button.disclosure__button.localization-form__select.localization-selector.link.link--text.caption-large {
background: #fff !important;
font-size: 1.6rem;
letter-spacing: .1rem;
line-height: calc(1 + .2 / var(--font-body-scale));
font-weight: 700;
}
.localization-form__select .icon-caret path {
fill: #f9447b !important;
}
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.
Hi, thanks this worked perfectly!
When I click this button - how can I change the drop down box background to White with Pink Text?
Thanks again,
Andrew
Please add the CSS code below,
.disclosure__list-wrapper ul#FooterCountryList li.disclosure__item > *,
.disclosure__list-wrapper ul#FooterCountryList li.disclosure__item a > * {
color: #f9447b !important;
}
.disclosure__list-wrapper {
background: #fff;
}
legend! thanks so much ![]()