Hi Guys,
I am trying to insert some empty lines between two paragraphs and i'm unable to do so.
How might i go about doing something like this:
http://img26.imageshack.us/img26/5528/screenshotunsaveddocumevq4.png
Basically, the first two paragraphs are clearly in P tags, but i cannot figure out how i can insert that whitespace between paragraphs two and three.
If this could be done with the WYSIWYG editor it would be AWESOME as it's for a not-so-technical person :)
thanks!!
You can't add empty paragraphs with WordPress. Instead, you need to edit the css in your theme's style.css to add more bottom padding to these paragraphs. Visit your site, look in your browser source code, and find the class of the div immediately surrounding each post (entry as a div class example here) and then add this to style.css:
.entry p {padding:0 0 10px 0;}
Adjust the 10 pixel amount to whatever amount you'd like.
If it is just the rare extra paragraph space that you'd like add, try this code in your post (don't add too many):
<p> </p>
Iridiax, thank you!
Question: why is this white space stripped out?
Question: why is this white space stripped out?
WordPress removes it because it is not correct semantic markup to have empty paragraphs (paragraphs indicate content inside). Unlike with word processors, web spacing and display should be controlled by css.
Z.N. Singer
Member
Posted 1 month ago #
Wrong - every single instance of extra white space that you can use in Wordpress, including
, gets stripped when you switch from HTML to Visual editor. This is something that they MUST FIX. It drives me nuts and makes using Wordpress to host serious writing in long posts a laborious, tedious, madness making process because every time you want to edit something you have to go through the whole thing again. I saw a thread that claimed it was fixed: it ain't.
Z.N. Singer
Member
Posted 1 month ago #
Oops - code indicated was
<br />