• When I use the Visual editor, it removes all of my spacing. I have pictures next to text, and I need spacing between each picture. When I go to post my page, everything gets jumbled up into each other.

    I read that this is a “feature” of WP. Not sure why it decides how much spacing I need. Is there a setting I can change that will fix this?

    Thanks.

Viewing 1 replies (of 1 total)
  • This usually requires modifying the CSS on your stylesheet. One thing that is common with pictures – if you are using WP editor or media library to insert, they often add a class for .alignleft or .alignright

    If those classes are not define in the stylesheet, the spacing is not correct.

    I find for general styling, at least as a starting place, you can add these to your stylesheet if .alignleft and .alignright are not already in it.

    .alignleft { float: left; padding: 15px }
    .alignright { float: right; padding: 15px }

    Try that & see if it helps

Viewing 1 replies (of 1 total)

The topic ‘Spacing in pages/posts is removed’ is closed to new replies.