I just finished installing motion theme and for some reason it’s not letting me change the colour of the links in my footer. I have two menus and my social icons which are all showing up in the default text colour. If I go into the theme customizer and change the text colour under “General” I can update the footer links to white but then it also change all the main body text to white makes it impossible to read. How do I change only the links in the footer? There doesn’t seem to be a setting to change only that area. Thanks!
1 Like
Please add this code at the bottom of theme → edit code → assets → theme.css file .
.site-footer__linklist a {
color: red !important;
}
Thanks!
1 Like
That worked thank you. I also added the following to fix the social icon colours:
.footer__social .icon{
color: white !important;
}