Wordpress Font Question

1 replies
I have a question about changing the font size in a Wordpress.org theme.

I want to change the font size on both posts and pages - am I able to do that within the stylesheet and if so which parts do I change - sorry I am not very technical so will need really pointing in the right direction.

Many thanks for any help, Ali
#font #question #wordpress
  • Profile picture of the author TheRichJerksNet
    Look inside your styles.css, depending upon what theme you are using..

    Change the body text of pages

    Code:
    body {
        font-size: 0.7em; /* Resets 1em to 10px */
        font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
        background: #d5d6d7 url('images/secure_bg.jpg');
        color: #333;
        text-align: center;
        }
    You need to find the font settings in your styles.css file such as

    Code:
    #content {
        font-size: 1.2em
        }
    
    .commentlist li, #commentform input, #commentform textarea {
        font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif;
        }
    There are several paces within the styles.css that the fonts size is controlled..

    James
    {{ DiscussionBoard.errors[202734].message }}

Trending Topics