Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #14081
    simon olley
    Participant

    I’m using this below, but I keep getting the text in the slider enlarging as well (which I don’t want). I just want page heading to increase and still be responsive

    .entry-header .entry-title {
    font-size: 50px;
    }

    #14085
    Sakin
    Keymaster

    @oly: Sorry I cam bit confused which page heading you are talking about. Can you explain it or share screenshot.

    #14100
    simon olley
    Participant

    Sure, the style of page heading I want to enlarge is the one that reads “Web design and graphics by craftspeople” on the following link…

    http://www.olleydesign.com/

    #14104
    simon olley
    Participant

    I’ve also tried…

    .page .entry-title {
    font-size: 5rem}

    …which results in the slider title also getting bigger, which I don’t want.

    It is only the page title I want to enlarge.

    #14109
    Sakin
    Keymaster

    @oly: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 960px) {	
    .entry-header .entry-title { font-size: 50px; }
    }
    #14113
    simon olley
    Participant

    Thanks, but that also seems to increase the size of slider title, which I must not do 🙁

    I only want to increase the size of the page titles/headings.

    #14115
    Sakin
    Keymaster

    @oly: Ok then use the following CSS.

    @media screen and (min-width: 960px) {	
    #main .entry-header .entry-title { font-size: 50px; }
    }
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Increase page heading size’ is closed to new replies.