Hi,
I am using ‘#aaaaaa’ as Primary color setting for the footer, but it is rendered as ‘#f05a1a’. Please give me some advice!
bye,
Karsten
Hey kmue!
Are you using some styling rules in Dashboard > Enfold > Advanced Styling?
Go ahead and add this to your custom CSS to override it.
#footer a {
color: #aaaaaa !important;
}
Regards,
Elliott
Hi!
Try this code for hover color:
#footer a:hover {
color: red !important;
}
Please replace ‘red’ with the color of your choice.
Cheers!
Rikard
Thanks, this Quick CSS workaround fixes the problem:
#footer a { color: #aaaaaa !important; }
#footer a:hover { color: #ffffff !important; }
Is it possible to fix it without a workaround? The footer primary and highlight color is defined in enfolds styling section. So it should not be necessary to use ‘important’ in Quick CSS!
bye,
Karsten