Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #51461
    scottc
    Member

    On large screens the Header title takes up the entire header. When I reduce the Screen size it goes back to normal

    http://texasethics.com/

    #51562
    Sakin
    Keymaster

    @scottc: Create Pro theme is designed to make the large site title. But if you want to change then you can change the font size as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

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

    #98267
    Martijn
    Participant

    Hello,

    For me the site title is also too big but when I use the coding :
    .site-title { font-size: 133px; }

    its not responsive and on a phone it will be really big and not fitting in the screen anymore. Is there a code to make the .site-title smaller but still responsive. And also the tagline below a little bigger and responsive ?
    Thanks…

    #98299
    Sakin
    Keymaster

    @martijn: If you just want to change it for large screen then you can add the following css instead of above.

    @media screen and (min-width: 960px) {
        .site-title { font-size: 133px; }
    }
    #98325
    Martijn
    Participant

    Thats great, thanks…
    But my second question… how can I make the Tagline below the site-title bigger ? And of course also responsive so it looks good on smaller screens.

    #98340
    Sakin
    Keymaster

    @martijn: Then it will be as below:

    @media screen and (min-width: 960px) {
        .site-title { font-size: 133px; }
        .site-description { font-size: 18px; }
    }
    #98510
    Martijn
    Participant

    Thanks a lot…. looks great.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Header Title is too big’ is closed to new replies.