How do I change font color and hover color?

Posted in: Newspaper
Post count: 4

Hi!

How do I change the post related articles section’s font color(https://gyazo.com/b606b747f3bd4b70de4f1559e052fdd9)
and footer widget section’s hover color of the author’s name(https://gyazo.com/82b400295c57327df40891983ce18090) ?
Is there for that part in the Newspaper theme panel’s theme color? I tried everything, but it didn’t change.

Thanks in advance!

Post count: 27744

Hello,

You can change only the general accent color from Theme Panel -> Theme Colors => https://www.screencast.com/t/GFjgGed6F, or headers background color => https://www.screencast.com/t/BrQgwbNbqUiR.
For individuals element, you can do that with Custom CSS => https://www.screencast.com/t/2FGn3EjbK in Theme Panel-> Custom Code-> Custom CSS => https://www.screencast.com/t/7S0LOr0bhpJ. This is the code:

.td_block_related_posts .td-related-title .td-cur-simple-item{
background-color: red;
}
.single .td_block_template_1 .td-related-title {
border-color: red;
}

For hover color of the author’s box, you can do that with custom CSS, like this => https://www.screencast.com/t/DWjKYxq7FH2N, the custom code CSS you add like before.

.single .td_top_authors .td_mod_wrap:hover .td-authors-name a {
color: red;
}
.single .td_top_authors .td_mod_wrap:hover .td-author-post-count,
.single .td_top_authors .td_mod_wrap:hover .td-author-comments-count {
background-color: red;
}

Hope this helps you!

Thank you!

Post count: 4

Hello.
I was able to change the right away!
Thank you very much for your kindness!

Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.