Change font size of blog post text?

  • Anonymous

    #727

    Is there a way to add code to a child theme to change (increase) the font size of the text in each blog post?

    Kim

    #13378

    Font style & size You decide. Now Your CSS looks something like:

    .entry-content p, .slider_post_entry p, .entry-content ul, .entry-content ol, .comment-entry ol {
    color: #2C2B2B;
    font: 12px/20px arial;
    }

    Maybe try this in child style.css:

    .entry-content, .entry-content p, .slider_post_entry p, .entry-content ul, .entry-content ol, .comment-entry ol {
    color: #2C2B2B;
    font-family: georgia,verdana,tahoma,arial;
    font-size: 14px;
    }

    Well I find georgia more friendly in posts.

    And I use arial in menu & .sidebar, like:

    .sidebar, .sidebar p, .sidebar li {
    font-family: arial,verdana,tahoma,georgia;
    font-size: 13px;
    }

    My “posts” header:

    h2, h2 a, h2 a:visited {
    font-family: georgia,verdana,tahoma,arial;
    font-size: 20px;
    padding-bottom: 4px;
    }

    And .post meta: (Arial here 🙂

    .post-meta .post-author, .post-meta .edit-post, .post-meta .post-date-inline {
    font-family: arial,verdana,tahoma,georgia;
    font-size: 12px;
    }

    Kim

Viewing 2 posts - 1 through 2 (of 2 total)

  • You must be logged in to reply to this topic.