WordPress has a weird “feature” of stripping extra line breaks out of posts. Often times you will want more than just a single space between paragraphs or pictures. If you try to use standard html code like the following, it won’t work.

<br /> – doesn’t work

<p>&nbsp;</p> – doesn’t work

The only method that I have found of adding extra line breaks in your WordPress posts is to use the following code.

<p align=”left”>&nbsp;</p>

Copy and paste that as many times as you want.

 

 

 

 

See?

Another one that seems to work just as good is: <p style=”text-align: left; font-size:1px”>.</p>

.

.

.

.

See?