Testimonial Slider — Testimonial Text Not Wrapping

442 Views Asked by At

I'm working on a site for a client and Im trying to use testimonial slider but for the life of me I cannot figure out why the text won't wrap.

here is the link: https://adventuretoward.com/client/chad/

1

There are 1 best solutions below

4
On

You should ask questions properly as was mentioned above. A good question is half the answer. About your case: the <p> with testimonial is a child of a <pre> and <pre> has a default of white-space: pre;.

I see a misuse of a pre tag, however you can just add white-space: normal; to your paragraph like this:

.testimonials {
  white-space: normal;
}