Hi Bettina,
Thanks for using Author!
That is a very peculiar bug. I was able to recreate the issue as well. For now, in order to add hyphens, you’ll need use the following string of characters instead of using the hyphen key: http://pics.competethemes.com/image/3y3r021i0d1b
So in the post editor, you would change your title to the following: http://pics.competethemes.com/image/2Q1p3W2Y3n34
^ That will display the hyphens correctly.
For the text wrapping, the following CSS will turn this off:
body {
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
}
You can copy and paste that code into the “Custom CSS” section in the Customizer (Appearance > Customize). Once added there, it should take affect right away.
Thank you for your quick help.Everything works fine, now.
For IE 10+11 I had to add -ms-hyphens:none.
You’re welcome! Thanks for the tip about IE.