• Hi, perhaps a bit of a greenhorn question yet how do I edit the font size on my sidebar recent posts? The one’s that say ‘The Pending Book’ and ’10 Reasons Why…’. They’re just test posts, yet I’m trying to figure out how to edit the font size for future posts. https://www.thisisallaboutyou.com

    Please and thank you in advance ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can do so by several ways.
    1. Add this to your style.css

    a.post-title.cat-post-title {
        font-size: 18px;
    }

    2. Add !important to the value of font-size in .cat-post-title found in your cat-posts.css

    .cat-post-title {
        font-size: 15px !important;
        font-size: 0.9375rem;
    }

    3. Delete font-size: 0.9375rem; and just leave the font-size: 15px; in .cat-post-title found in your cat-posts.css

    .cat-post-title {
        font-size: 15px;
    }

    Hope it helps you ??

    Thread Starter andretiaay1

    (@andretiaay1)

    Thank you rubyannrsls, I really appreciate your help. Where exactly do I find those codes though? I don’t seem to find them in my style.css.

    You can find them in your cat-posts.css
    But if you can’t find cat-posts.css in your css folder, number 1 can do the trick ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How To Edit Sidebar Recent Post Font’ is closed to new replies.