Title has word broken when viewed in mobile [closed]

It’s possible that a word-break CSS rule could fix the problem. You could apply it globally with this

body {word-break:normal !important; }

Or maybe this:

body {overflow-wrap: normal;}

But it might be better to apply that to the specific class/id used by the title. And ever further tweak it to only apply that rule to smaller screens via the media query.

But you could add the above to ‘additional CSS’ in your theme customization to see if that will help.

Asking the theme developer support area is the best place for this question, though.