getdatakick / revws

PrestaShop / ThirtyBees Product Reviews module
https://store.getdatakick.com/en/revws-free?utm_source=github&utm_medium=web&utm_campaign=github
21 stars 9 forks source link

Long content can break review layout #96

Closed getdatakick closed 5 years ago

getdatakick commented 5 years ago

Fix is to add this css rule:

.revws-review-content {
  word-break: break-word;
}

It's also necessary to fix the email templates, as they are affected as well

getdatakick commented 5 years ago

Also fix back office table column. Something like this should suffice

    max-width: 300px;
    text-overflow: ellipsis;
    overflow-x: hidden;