Reply To: How do I make links in Footers visible?

Homepage Community Forums Aspire Theme Support How do I make links in Footers visible? Reply To: How do I make links in Footers visible?

#22153
webauthor
Customer

    Hi Wes, I’m sorry I should have been more descriptive. Yes, I meant the link color. I did however figure it out.

    Before:

    .footer-widgets,
    .footer-widgets a {
    	color: #fff;
    }

    After:

    .footer-widgets,
    .footer-widgets {
    	color: #fff;
    }

    I also figured out how to change the a.hover as well.

    Before:

    .footer-widgets a.button,
    .footer-widgets a:hover,
    .footer-widgets a:focus {
    	color: #fff;
    }

    After:

    .footer-widgets a.button,
    .footer-widgets a:hover,
    .footer-widgets a:focus {
    	color: #a708c5;
    }

    Thanks for the reply. I LOVE your themes!!! So well coded and easy to work with. Great job.