• Resolved webbcomm

    (@webbcomm)


    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
    ple

    instead of
    Document title for
    example

    A 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;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Table document title breaks within a word, CSS Bug?’ is closed to new replies.