-2

So I'm working on this website using a wordpress template from Massive Dynamic. One of my elements (screenshot attached) has a max character length. I've tried removing it for hours. The max character length is 20 characters. Any css I need to remove or is it some new CSS I need to add?

Help me out Thanks

Site: Numbersnumbers.dk

enter image description here

1 Answers1

-1

Just add

word-wrap: break-word !important;

to the element and it should work. I've tried on your website with Chrome DevTools and it worked :)

Marco Caggiano
  • 308
  • 2
  • 8
  • In what way is this related to the question? He needs to remove the length limit, not break words onto a new line. – Hans Oct 14 '18 at 21:10
  • Now the section from the website has been removed, so i cannot try again. It is releated, because maybe it wasn't a 20 chars limit, but simply the overflowed content was hidden, so breaking words would display them all; but i have to retry to see if i made a mistake and my solution is not correct. :) – Marco Caggiano Oct 16 '18 at 06:28