How can I change the hover link color of all the links of the site? (I don’t what to change the THEME ACCENT COLOR).
Thanks.
Hi,
Please try this custom css, paste it in Newspaper>Theme panel>Custom code>Custom css
.td-post-content a:hover{
color: red;
}
The above custom css will apply to all post content ( you can change the color red ).
Hope this will help you to achieve what you want.
Thank you.
Great! Thanks!
And if I want to change only the hover color of the links from the Footer & Sub-footer? What code it is?
Hi,
You can use the color from the the panel, or set on widgets in footer or custom css
https://www.screencast.com/t/FxxNMyTd0
.td-footer-wrapper .td_module_wrap:hover a,
.td-footer-wrapper a:hover{
color: red;
}
Thank you.
Thank you very much!
But I’m using also a Menu in Sub-Footer (the line with copyright), and there the above code isn’t apply đ