Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #302319

    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!

    #302360

    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

    #302381

    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!

    #302600

    Hey!

    Please try adding following code to Quick CSS as well

    .post-title.entry-title {
    color: orange!important;
    }

    Best regards,
    Yigit

    #302921

    Thanks! That did it.

    #303124

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Changing text color to blog post titles and links’ is closed to new replies.