Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: How to prevent line breaks in list items using CSS #10100
    blankjimmyrare
    Participant

    You could add this little snippet of code to add a nice “…” to the ending of the line if the content is to large to fit on one line:

    li {
      overflow: hidden; 
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    
Viewing 1 post (of 1 total)