• I like the ability to be able to change the font size. However, the font size also changes the font size of the recent posts widget. Is there any way to change the font size on just the posts? Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hopefully Yes.
    But you’ll have to show us the Site URL specifying the title of which font size you want to change.

    Hi,

    Please post your website url.

    I assume you only want to change the font size of the post content or excerpt?

    Thank you!
    Denzel

    Thread Starter tazevedo3

    (@tazevedo3)

    My URL is pastortim.purewordchurch.org.

    Yes, I want to change just the content of the blogs. Spacing between lines would be awesome too. With the Customizer, I can change the font size but then it also changes the font size of some of the navigation elements.

    Thanks a bunch!

    You can change the font size of the summary of your posts with this bit of css –

    .tc-g-cont {
        font-size: 18px!important;
        line-height: 24px!important;
    }

    I hope it helps.

    Hi tazevedo3,

    Using this post as reference. https://www.pastortim.purewordchurch.org/2015/09/22/why-we-need-to-shut-our-mouths/

    Please try adding the following codes in your Appearance -> Customize -> Advanced Options -> Custom CSS

    This code is for changing your h2 (the subtitle you entered “My Interview Question” as seen on your blog post)

    .entry-content h2 {
        font-size: 35px !important;
    }

    You can change the 35px to a larger px or smaller px value.

    This is code for changing your p (the content as in paragraph of your blog posts)

    .entry-content p {
        font-size: 18px !important;
        line-height: 1.8em;
    }

    You can change the 18px to a larger or a smaller px value.
    You can change the line height 1.8em, which is spacing between paragraph lines to a larger em or smaller em value.

    Hope this helps!

    Result screenshot. https://prntscr.com/8jfvuw

    Thanks!
    Denzel

    Thread Starter tazevedo3

    (@tazevedo3)

    Wow! This is exactly what I needed! Thank you guys so much! How can I figure out these elements for me to do my own coding? Where do I find them? I looked on style.css and there’s absolutely nothing. =(

    Also, one more question. Is there any way to change the width of the sidebars?I’m sure there is but I don’t know the name of the element for that. .left-sidebar? Haha!

    Recommend using unitless line-height

    See here

    Hi rdellconsulting,

    Thanks for the information!

    Regards,
    Denzel

    To tazevedo3,

    The Customizr Theme is based on a 12 column layout.
    You are using sidebar on the right, which is span9 for content and span3 for sidebar. To increase your sidebar span, you have to reduce your content span accordingly. When both adds up, it cannot be more than 12.

    Please refer to this article for the code snippet to adjust your layout.
    https://presscustomizr.com/snippet/changing-the-global-column-layout-of-the-customizr-theme/

    Thanks!
    Denzel

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Change Font Size ONLY on Posts’ is closed to new replies.