Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #151544
    coachnancyk
    Participant

    Hi, someone on the forum showed me this code for changing the size:
    */
    .site-title {
    font-size:40px;
    }
    It works on the page where I’m inserting the CSS but the bigger size remains on the main page.

    Also, how can I move the title to the top or bottom of my header image?

    My site is lovewithouttraffic.com

    #151576
    Sakin
    Keymaster

    @coachnancyk: Yes, the css to change the font size of Site title is as below Just change the font size in the following css as per your need and then add it in “Appearance => Customize => Additional CSS”

    .site-title {
        font-size: 80px;
    }

    It’s not recommended to move the title to the bottom on header image. But if you really want to do that, then add the following css in “Appearance => Customize => Additional CSS” box:

    #masthead {
        min-height: 330px;
    }
    
    #site-branding {
        position: absolute;
        bottom: 0;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Changing Title Size and Moving’ is closed to new replies.