• Please, could you help with explaining how to change in the “additional CSS” the post title only?
    If you notice all the titles are in black, except the first post which appears in Grey
    Link: https://travelhunkydory.com/
    Thanks in advance!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author candidthemes

    (@candidthemes)

    Hi @karem1986,

    Thank you for showing us the bug on our CSS on the theme. We have updated our parent theme “Gist” with the fix and it should be live soon. You can just update it and it will fix you title. However if you want a quick fix you can add the following CSS on on Appearance > Customize > Additional CSS

    .entry-title a:visited{
     color: #1a1a1a;
    }

    Also if you want to change the post title color you can do by adding color to following CSS selector:

    .entry-title,
    .entry-title a,
    .entry-title a:visited{
     color: your-color-here;
    }

    Please change your-color-here to the color code or name of your choice.

    Hope this helps ?? ??

    • This reply was modified 5 years, 11 months ago by candidthemes.
    Thread Starter karem1986

    (@karem1986)

    Thank you!
    I will try this and let you know ??

    Karem

    Thread Starter karem1986

    (@karem1986)

    it worked adding the !important rule! thanks for providing guidance

    Can you have a look please?

    URL: https://travelhunkydory.com/

    Code I used:

    .entry-title,
    .entry-title a,
    .entry-title a:visited {
    color: red !important;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CSS to change Post title ONLY’ is closed to new replies.