Words cut off in mobile version of page

My Website is http://93m.13c.myftpupload.com/employers/

“Areas of Specialization” The “n” is cut off on the mobile version

Hello @rarowley,

Thanks for asking. :slight_smile:

You can add a custom class in the headline element under Customize > Class https://cl.ly/1L2Q0U1P211I. After that add following CSS under X > Theme Options > CSS:

@media only screen and (max-width: 600px) {
   .custom-class h1 {
    font-size: 350%;
}
}

Please replace class name as per your requirement.

Thanks.

Thanks that worked!