• How do I remove the space between a section title and the body in a blog post. You can see the body of my most recent post at http://rehobconsulting.com/whos-pulling-you/. In this post for example, I’d like the the section titles “It’s Around Us”, “The Paradox”, etc to be closer to the body of the text.

    For your information, I’m a completely new to WP. I had someone help me set up the site last year. But now, I need to make changes myself.

    Thanks!

Viewing 1 replies (of 1 total)
  • You can do this by modifying the css in the Base.css file but I would strongly advise you to create a Child Theme first before changing anything.
    When you have created the child, add this to the style.css file.

    p {
        margin-bottom: 10px;
    }

    you can modify the 10px to whatever spacing you want between paragraphs.
    You could also try using h3 tags around your subheads rather than p and strong.
    Hope this helps

Viewing 1 replies (of 1 total)
  • The topic ‘How do I remove space between a section title and the body in a blog post’ is closed to new replies.