Set Theme's Paragraph Spacing in Style Sheet

Howdy,

Trying to reduce the paragraph spacing on this site. Not sure what to tweak in the style sheet.

You can see on these pages that the space after the paragraphs is a bit too large:

http://alchemisteating.com/alchemist-eating/

http://alchemisteating.com/beets-the-new-viagra/

Cheers,

Casper

  • Timothy
    • Chief Pigeon

    Hey Casper,

    Hope you’re well :slight_smile:

    There is a margin-bottom on there, we could remove or adjust it:

    .entry-content ol,
    .entry-content p,
    .entry-content ul,
    .quote-caption,
    .clear-line {
    margin-bottom: 15px;
    }

    I simply copied the default there, this affects ordered and unordered lists as well as the clear-line and quote-caption class. For just paragraphs you could target all p’s:

    .entry-content p {
    margin-bottom: 15px;
    }

    I’m guessing you don’t want it specific to a post or page, but all paragraphs through the site? :slight_smile:

    I think you know how to add CSS, but if you need a hand, let us know :slight_smile:

    Take care.