How to Add Extra Spacing
HelpDocs is designed with usability and accessibility in mind, but there might be times where you want to add additional spacing between paragraphs or around images.
Updated
by Taylor Sloane
HelpDocs is designed with usability and accessibility in mind but there might be times where you want to add additional spacing between paragraphs or around images.
The trouble is most browsers automatically collapse empty paragraphs. This means in the text editor you might see spacing that doesn't show up in your published article.
Here's how to get around it:
Force Empty Paragraphs to Show
We don't recommend this workaround because accessibility is pretty darn important. 🙃
- Head to Settings > Code > CSS.
- Paste
#article p { min-height: 1em; }
- Hit Save.
Add Spacing Around Images
- Head to Settings > Code > CSS.
- Paste
#article img { margin-top: 2em; margin-bottom: 2em; }
- Hit Save.
What did you think of this doc?
How to Change the Logo Link
Add HTML Before the Closing Body Tag