• ezra1993

    (@ezra1993)


    Hello friends,

    I want to make my post titles go farther before they wrap.

    For example, this page would look better if the post title were all on one line.
    http://www.revenuehub.org/determining-the-transfer-of-control/

    This is the code I have right now.

    body #page-header-bg h1, html body .row .col.section-title h1 {
        font-size: 40px !important;
        white-space:normal;

    Thanks for your help! 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • beaudaignault

    (@beaudaignault)

    Hello Ezra.

    I see that your media query includes max-width like so:

    @media only screen and (max-width: 1300px) and (min-width: 1000px)
    body.single.single-post .section-title h1 {
        max-width: 620px;

    Try changing it to :

    @media only screen and (max-width: 1300px) and (min-width: 1000px)
    body.single.single-post .section-title h1 {
        max-width: 100%;

    Good luck!

    Thread Starter ezra1993

    (@ezra1993)

    Thank you so much Beau Daignault! You are a wonderful man. 🙂

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

The topic ‘Change where post title wraps’ is closed to new replies.