fabiorino / crelly-slider

A free responsive slider for WordPress that supports layers. Add texts, images, videos and beautify them with transitions and animations.
MIT License
104 stars 36 forks source link

Styling - white-space: nowrap #32

Open neotropic2023 opened 7 years ago

neotropic2023 commented 7 years ago

Great Plugin. Not really an issue, but limitation in some instances of usage.

I noticed when adding text, adding a paragraph, it makes that entire paragraph one line. ideally, it should wrap within the DIV element. But it does not. I looked further and figured this was the issue. May want to consider having an option and remove "white-space: nowrap;" as it is hard coded into the stylesheet and not many would be able to remove it or know how to AND, like myself some clients like to add paragraphs of text. Myself, I can easily remove it.

Like an image slider with a block of text, simple.

fabiorino commented 7 years ago

Hi, white-space: nowrap; is hardcoded for compatibility reasons related to responsiveness. The easiest way to break is writing something like that:

This is the first line
<br />
This is the second line
fabiorino commented 7 years ago

Sorry, comment edited! Now it's correct.