Hi,
i try to separate long h1 titels with in textmode and with media queries like this:
<h1>Das Tiroler Landesjugendorchester</h1>
<h3>Dirigent: Vito Cristofaro</h3>
and in CSS
@media only screen and (max-width: 767px) {
h1 {
hyphens: auto;
}}
But it doesn’t work. Do you have any other idea how i can separate long words for smartphones?
Thank you for helping!