Viewing 7 reply threads
You must be logged in to reply to this topic.
Good day,
is there anyway to have different color for hyperlinks in body and footer.?
The appearance settings is globally
Thank you,
Hello,
Yes, you can set the style up wit custom css. Add it in your Custom Css box. Example:
/*body link color*/
.top_wrapper a {
color: #ff5400 !important;
}
/*footer link color*/
footer a {
color: #ff5400 !important;
}
Change the color to your wish.
Best regards!
Thank you, but then the color of the “buttons text” take the top_wrapper a settings
Hello,
You don’t need any code to do that. Please go to WordPress Dashboard > Specular > Stylings > Content Link Color. You can change the links color of the body.
If you need to change the footer links color please go to WordPress Dashboard > Specular > Styling > Footer Stylings > Footer links font Color.
In case you want to use the code :
.top_wrapper a:(.btn-bt) {
color: #ff5400 !important;
}
Let us know.
Regards!
Hello,
Edit the custom code to this:
footer .inner a{color: #ddd !important;}
Regards!
You must be logged in to reply to this topic.