Forums

Typeface size changes to H1 & H2 (2 posts)

  1. smarsel
    Member
    Posted 1 year ago #

    Is there a plugin that makes changing the {primarily} sizes ( but possibly - sizes, weights and colors) of the typefaces for H1 & H2 for someone who has absolutely no knowledge of coding or html?

    Thanks!!

  2. stvwlf
    Member
    Posted 1 year ago #

    You need to learn to make a few simple adjustments to your theme's stylesheet, style.css in the theme folder.

    It could be as simple as

    h1 {
      font-size: 28px;
      color: #123456;
      font-weight: bold;
    }
    h2 {
      font-size: 24px;
      color: #654321;
      font-weight: normal;
    }

    The main thing that might be more complex if that doesn't work is you might have to replace h1 and h2 with something like
    #content h1 and
    #content h2
    depending on what your theme requires.

    You can add those lines to to the very end of style.css In the worst case you just remove it if it doesn't work or breaks your theme (which it won't if you paste it in correctly). And in the process you will learn a small amount about using CSS.

    To change color you need to know the 6 digit #123456 hex code for the color you want. There are free color picker tools for both Windows and Mac that let you point at any color on your screen to display the 6 digit hex color code.

    If adding the CSS code doesn't work, if you can post a URL and explain what you want to change someone will give you the exact CSS to add to your stylesheet.

Topic Closed

This topic has been closed to new replies.

About this Topic