Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Multimastery. Can you define what you mean by “page title”? Below the header and above the posts?

    Thread Starter multimastery

    (@multimastery)

    Yes that’s what I mean. The post title size is fine for the look I want. But when I create a page the titles are much smaller.

    You would use the page-title class. Here’s the theme default CSS:

    .page-title {
        background: #fff;
        position: relative;
        padding-top: 18px;
        padding-bottom: 17px;
        border-bottom: 1px solid #eee;
        color: #666;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 24px;
    }

    You would add the following in a child theme style.css file or a plugin like https://wordpress.org/plugins/simple-css/ or https://wordpress.org/plugins/simple-custom-css/ to change the font-size:

    /* change page title font to specified size */
    .page-title {
        font-size: 32px;
    }

    Hello! Total CSS newb here, so bear with me!
    What’s the difference between inputting CSS through Customize->Additional CSS and installing a plugin to add your CSS?
    I tried changing my site title color through Customize-Additional CSS and I can’t get it to change, so I’m assuming I need the plugin – just curious as to why the Additional CSS section in WordPress isn’t working for me.
    Thank you!!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Increase Page Title Size’ is closed to new replies.