skip to Main Content

I have a slider in wordpress which splits the words, like the example below.

I have the following html code:

<div class="box-caption--excerpt">
   <p>Compassion is “sensitivity to the pain or suffering of another, coupled with a deep desire to alleviate that suffering”. (Goetz et al, 2010)</p>
</div>

I tried using the following css, but I don’t have the expected outcome.

.box-caption--excerpt p{
    word-space: nowrap;
}

Any help please?

enter image description here

3

Answers


  1. Chosen as BEST ANSWER

    I found the solution. I had to set:

    .box-caption--excerpt p{
         line-break: normal;
    }
    

  2. word-break: normal; or word-break: keep-all is the answer to your problem;

    Login or Signup to reply.
  3. Increase the width of the div

    .box-caption--excerpt p{
        word-space: nowrap;
        width:"150px";
    

    }

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search