Single spacing instead of double spacing
Answer
Hope this helps
This has come up again. For typical news articles double spacing looks beautiful. But there are some times when double spacing doesn't look good. For instance I'm trying to create a list of our local representatives and there's TONS of white space(see screenshot below).
My only other options would be to create an html asset or a static page. I'd much rather just create an asset because I'd have more control over it.
Have you tried editing the html and place a <br> tag where you want a line break?
<p>Paragraph first line goes here<br>Second line goes here.</p>
As Mary said, you should be able to create a <div> in HTML mode and add <br /> tags, and that won't be replaced. As long as they are inside a block level element.
Here is an example: https://www.flex-showcase.bloxcms.com/news/national/a-life-sentence-in-oklahoma-state-homecoming-crash/article_3098b50d-d506-5a9e-8697-3fe5afefbca5.html?gg
That being said, we are looking at ways to improve this in the future... but it requires a major update of our editor which may be tricky. We are looking into it though.
As a side note, make sure you're doing <br /> - it will try to replace them to become <br /> and it could be doing something weird with your code I suppose.
Customer support service by UserEcho
Hope this helps