• Is it possible (through CSS code or other means) to increase the size of page titles? Thank you.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Sure, give this CSS a try and let me know what you think:

    @media all and (min-width: 56.25em) {
    
      .post-title {
        font-size: 28px;
        line-height: 1.357;
      }
    }
    @media all and (min-width: 68.75em) {
    
      .post-title {
        font-size: 38px;
        line-height: 1.5;
      }
    }

    Please copy and paste that code into the Additional CSS section in the Live Customizer (Appearance > Customize), and it will take effect right away.

    Mission News scales the titles to different sizes depending on the screen size and page layout, so try that code snippet first and let me know if there are any pages where it needs further tweaking.

Viewing 1 replies (of 1 total)
  • The topic ‘Increase page title size’ is closed to new replies.