Splitting sentences in whole words

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
Hello,

I have a developer making a new updated site for me, and I really like it, but we made the long/full description and the reviews side by side, and in the full description the sentences breaks the words wherever it runs out of space, not whole words, so it is hard to read.
He say we can not make the system split sentences in whole words, but in the reviews the sentences are split in whole words just fine. So it can be done.... Please check this link to the test site so you can see what I am trying to explain.
http://45.63.78.0/par-36-hi-lo

Thank you

Kenny
4 years ago
It's something in your CSS.  If I inspect the span around the text I see this

@media (max-width: 1299px)
.cust-box .detail-container .box1 .full-description span {
    word-break: break-all;
}



if I change
  word-break: break-all;
to
  word-break: break-word;

it looks fine.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.