Hi there!
How do I change the color of the blog post titles and links? They’re currently black but want them more consistent with the orange scheme on my site. Also, how do I add an underline on hover to them?
Also, when I am on a specific blog post page and I hover over the title of the blog post, it is an active link that is linking to the current page I’m on. How can I remove this so it’s not a live link?
Thanks!
Hey alexmasica!
Thank you for using Enfold.
Change the post color of the post title with this:
h2.post-title.entry-title {
color: orange !important;
}
Add the underline when hovered using this:
h2.post-title.entry-title:hover {
text-decoration: underline;
}
Remove the link on single post view using this:
.single h1.post-title.entry-title a {
pointer-events: none;
}
Cheers!
Ismael
Thanks, Ismael! All of this worked, except that the post title is still black when I click into the post detail page. How can I change that to orange, too? Thanks!
Hey!
Please try adding following code to Quick CSS as well
.post-title.entry-title {
color: orange!important;
}
Best regards,
Yigit
Thanks! That did it.