Table document title breaks within a word, CSS Bug?
-
Hi,
I noticed that the document title within the table generated via shortcode breaks in mid word when it hits the edge of the table cell, rather than at the end of a word.So we see stuff like this
Document title for exam
pleinstead of
Document title for
exampleA little digging and I noticed that this code from memphis-documents.min.css?ver=4.6.1 is the culprit
.mdocs-list-table #title {
word-break: break-all!important;
}A change to that css below fixes it for me. Is this a known issue that anyone else has had? Is this fix detrimental to anything else?
.mdocs-list-table #title {
word-break: break-word!important;
}
The topic ‘Table document title breaks within a word, CSS Bug?’ is closed to new replies.