I added this in:
#footer a {
color: #FFF !important;
}
I also tried several other things including something like:
#footer a:link {
color: #FFF !important;
}
#footer a:not(.sf-button) {
color: #FFF;
}
(courtesy of checking the source code and trying to figure out what would work)
.widget a {
color: #FFF;
}
#footer .widget a {
color: #FFF;
}
(I thought I might need to specify since the text is in a widget.)
#footer p a {
color: #FFF;
}
(I wasn’t sure if it CSS could actually even handle that, and I’m still not, but I thought it should be worth a try.)
Will you perhaps be including the ability to change links color in the footer in one of your next releases? If you can change the background color and text color, the link color should be included too (or you end up with dark on dark or whatever.)
Do you have any suggestions for something else to try?
I was wondering too, @2000martjin – Did you get their code to work?