Okay
  Public Ticket #2843613
Blog Title on Mobile
Closed

Comments

  •  1
    Alyssa started the conversation

    Hi there, 

    Some of my blog titles (ones with longer names) on mobile aren't displaying correctly. Please see screenshot. 

    How can I make the blog titles smaller? Thank you :)

  •  2,961
    Andrew replied

    Hello Alyssa,

    Try using the following CSS.

    @media only screen and (max-width: 690px){
        body .row .col.section-title h1, body h1, html body .row .col.section-title.span_12 h1, body.single.single-post .row .col.section-title.span_12 h1, #page-header-bg .span_6 h1, #page-header-bg.fullscreen-header .span_6 h1, .full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2 {
            font-size: 24px;
            line-height: 34px;
        }
    }
    

    Regards,

  •  1
    Alyssa replied

    That worked! Thanks :)