My users often copy&paste their submissions to my site from other sources (.txt files, html files, etc).

But when this happens, the text displayed while using the 4 Seasons theme seemingly ignores breaks, making the text look like one fat paragraph instead of three paragraphs

I've included two blocks of text, one using the Bluemarine Theme, one using the 4 Seasons theme.

Maybe a quick CSS fix? I'm not sure. But just wanted to help try to provide some feedback.
Cheers!
//TB

Comments

derjochenmeyer’s picture

Status: Active » Closed (works as designed)

it is in deed a quick fix... its the 3px in the following line (style.css line 155):

p {
margin:3px 0px;
padding:0px 0px;
}

try this:
p {
margin:1em 0px;
padding:0px 0px;
}

or this:
p {
margin:.1.5em 0px;
padding:0px 0px;
}

big_ham’s picture

Comment deleted ... wrong place. Issued a support request for the correct theme. Sorry for any inconvenience.