• I would like to manipulate the size of the body content (text), as well as being able to change the size of the headings (heading1, heading2, heading3, etc.).

    And I would like to change the font being used on the site (i.e., arial vs tahoma, etc.)

    I have the custom CSS plugin installed. How can I make these changes?

    Thank you!

    http://66.147.244.226/~breathm3

Viewing 1 replies (of 1 total)
  • Theme Author Rajeeb Banstola

    (@rajeebthegreat)

    You need to change font-size property of some elements.

    For Body Content (Text)

    .entry-content p, .entry-summary p, .comment-content p, .mu_register p{
    font-size: 21px;
    }

    For Heading 1

    .entry-content h1, .comment-content h1, .mu_register h1{
    font-size: 30px;;
    }

    For Heading 2

    .entry-content h2, .comment-content h2, .mu_register h2{
    font-size: 30px;;
    }

    and so on.

    For Changing the font

    body{
    font-family: tahoma;
    }

    Change the value to whatever you want

Viewing 1 replies (of 1 total)
  • The topic ‘Change font size for headings and general text’ is closed to new replies.