Hover links color

Posted in: Newspaper
Post count: 11

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.

Post count: 35449

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.

Post count: 11

Great! Thanks!

And if I want to change only the hover color of the links from the Footer & Sub-footer? What code it is?

Post count: 35449

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.

Post count: 11

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 🙁

Post count: 35449

Hi,

Please provide a link were I can inspect the problem, in this way I will be able to provide you the right answer.

Thank you.

Post count: 11
Post count: 35449

Hi,

This custom css will change your subfooter color too,

.td-footer-wrapper li a:hover,
.td-footer-wrapper .td_module_wrap:hover a,
.td-footer-wrapper a:hover,
.td-sub-footer-container .menu-sub-footer-container a:hover
{
color: red;
}

Thank you

Post count: 11

Thank you!

Viewing 9 posts - 1 through 9 (of 9 total)
The forum ‘Newspaper’ is closed to new topics and replies.