Heading in contact box element overflows

Hi!

At https://www.hinaustohonen.fi/yhteystiedot/I noticed that in mobile view the heading in contact box overflows:


Is there way to prevent this?

Thanks in advance!

Comments

  • Hi,

    You can either decrease the font size on mobile view:

    Or use the following CSS code to break the word:

    @media only screen and (max-width:767px){
     .get_in_touch .title{
       word-break: break-word;
     }
    }
    

    This CSS should be placed in Betheme -> Theme options -> Custom CSS & JS -> CSS.


    Best regards

  • Okay, thank you!

Sign In or Register to comment.