How to stop line breaks
I have a page with multiple events listed.
Some events render correctly with no line spaces:
Some events render with an empty line between texts.
I have searched to find a solution but can't find one.
Any advice how to format text so there are no line spaces between lines.
If you open https://englishcocker.org
Then to to EVENTS> COMING ATTRACTIONS and look at the entries you'll see what i mean.
Thanks.
Terry
Comments
Hi,
It is because each line is placed in a separate <p> tag, which has a default bottom margin.
The text on the left is divided with <br> tag for comparison.
If you want to get rid of the space, you should put your whole text in one <p> tag and divide it with <br>.
Best regards
Thank you very much.. that worked.