Change link color, Text Color!

4.09K viewsIssues
0

How do you change link color, customizer changes the color for the whole siteā€¦ I just want to change link color cant find any code for this

0

You need to add css code to change links color. For example if You want to change every link color inside anspress, You could add this custom code to Your site:

#anspress a {
   color: #826ECC;
}

This will change color of the links on anspress pages to purple. Of course this isn’t perfect solution.