Viewing 4 replies - 1 through 4 (of 4 total)
  • your best bet is to increase the bottom margin or padding on <p> in your css file. start with 10px and adjust from there to your satisfaction

    p { margin-bottom: 10px; }

    Thread Starter rationalworksnet

    (@rationalworksnet)

    Thx for the reply.

    I changed

    .entry p{
    margin:5px 5px;

    }

    to

    .entry p{
    margin:25px 5px;

    }

    And that seems to do it. But there are two problems:
    1) It does not reflect that on the main page
    2) It does that between ALL “paragraphs”. Like in the FAQs page, I want there to be a noticeable margin between each Q/A pair, not between each Q and A.

    Thread Starter rationalworksnet

    (@rationalworksnet)

    Okay I figured out how to make it reflect on the main page, but 2) is still not solved.

    Hi

    It does that between ALL “paragraphs”. Like in the FAQs page, I want there to be a noticeable margin between each Q/A pair, not between each Q and A.

    1) Don’t end your paragraph between the Q and the A – use a
    tag so the A is on its own line

    2) Wrap your whole Q & A block in a <div>

    <div class=”entry”>
    <div id=”faq”>
    … then your Q & A here …
    </div>
    </div>

    2) Put this in your stylesheet
    .entry #faq p { padding-bottom: 35px; }

    That will make extra spacing after the Answers. Adjust the 35px to whatever you want it to be

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Space between paragraph problem =(’ is closed to new replies.