word wrap

Permalink
I am finding that some of my titles are breaking words in the middle (in Firefox). These seem to be in blocks that I have created and then inserted rather than default titles in the theme, so it maybe something that I'm missing.

Please see attached for example, and the test page can be seen here (minimise to see effect)

http://gotimetrekkers.com/concrete5/index.php...

Thanks in advance for any ideas.

P

1 Attachment

 
hutman replied on at Permalink Reply
hutman
In your main.css on line 786 you have

.ccm-page h1 {
    -moz-hyphens: auto;
    word-break: break-all;
}


This is causing that behavior.
PJSAndo replied on at Permalink Reply
Not sure how that go there!

Anyway, did the trick!
Thanks
.ccm-page h1 {
    -moz-hyphens: normal;
    word-break: none;
}