Font size of blog posts

  • Unknown's avatar

    Is there a way to change the font size of a blog post, other than using the pre-determined sizes in the drop down box? I’d like something a little bigger than ‘paragraph’ but not as big as Heading 3.

    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, add the following and adjust my example 120% font size as desired.

    #content .entry-content {
        font-size: 120%;
    }

    The above will also increase the font size on static pages, such as your To Be a Gues on My Blog page.

    I noticed the font size in your Welcome text widget is a bit small. If you wish to increase that, add the following and adjust as desired. I also included a line height declaration and increased the line height a bit so the lines weren’t so close together.

    .widget_text .textwidget {
        font-size: 120%;
        line-height: 1.5;
    }
  • Unknown's avatar

    Oh my gosh, this is fantastic!! Thank you so, so much. One more thing, is there a way to drop down my ‘welcome’ content so it’s not so close to the header ‘Welcome to my Site’?

  • Unknown's avatar

    Oops, I didn’t add to notify me of followup posts by email. :)

  • Unknown's avatar

    Super!

    I notice you have an un-configured image widget in the featured sidebar above your Welcome text widget. The following will align the top of the text widget title with the “home” heading on the left.

    #text-3 .widget-title {
        padding-top: 15px;
    }
  • Unknown's avatar

    Looking at it a bit more, I noticed that the space between the bottom of the widget title and the content is sort of tight. Let’s add some bottom margin to the widget title to get it more like your Home section on the left.

    #text-3 .widget-title {
        padding-top: 15px;
        margin-bottom: 20px;
    }
  • The topic ‘Font size of blog posts’ is closed to new replies.