Flynn,
Thank you for the index.php fix for 3.3.3.
As a follow-up to the suggested CSS insert, after some "tinkering" I've learned the insert one wants to use will vary depending on what one wishes to control.
If I add this, it will control
both order and unordered lists:
Code:
/* to add spacing after all list items */
.post-bodycopy li {
margin-bottom: 10px !important;
}
If I use this insert instead, I can control the spacing between ordered lists and unordered lists separately:
Code:
/* to add spacing after ordered list items */
.post-bodycopy ol li {
margin-bottom: 10px !important;
}
/* to add spacing after unordered list items */
.post-bodycopy ul li {
margin-bottom: 8px !important;
}
Season spacing to taste.
Hope this helps.
P.S. I ran into this issue because WP's editor was driving me crazy so (not having yet read the thread below) I installed the "tinymce advanced" plugin (which I really like, although there isn't much of a tutorial for it so yo have to figure out what some of the additional features are on your own).
What I discovered is that there is an option
to stop WP from stripping out <p> and <br> tags (its in the advanced section). This works. But. It means that for every list (which is where I was having major formatting "issues") I had to manually insert <br> tags. The above CSS Insert as a solution works much better.