Home Forums WoodMart support forum FOOTER Reply To: FOOTER

#159819

Hello,

If you want to display the footer links in the white color and hover color as pink. You have to insert the below CSS code in global custom CSS area under theme settings >> custom CSS:

.color-scheme-light .footer-widget a  {
    color: white;
}
 .color-scheme-light .footer-widget a:hover {
    color: pink;
}

Result: https://jmp.sh/UXw3qNa

Best Regards.