• Resolved Boo_77

    (@boo_77)


    Can anyone tell me how to make the gaps between paragraphs smaller?? They’re huge.

    I’ve gone in to the CSS and it has this, but I thought this was correct from what I have read.

    p {
    font-size: 80%;
    margin-bottom:1em;
    }

    I’m fairly new to this styling stuff. Last night I made a change so that there would be a gap between my photo’s. Would that have affected the paragraph gaps as well??

    http://discoverboo.com/

Viewing 2 replies - 1 through 2 (of 2 total)
  • there is 10 pixels padding at the bottom inside the paragraph (bottom margin & padding = 22px gap). Try adjust the padding-bottom value

    p {
     font-size: 0.8em;
     line-height: 1.618 em;
     margin-bottom: 1.618 pt;
     padding-bottom: 0pt !important;
    }

    phi

    Thread Starter Boo_77

    (@boo_77)

    THANK YOU!! That worked a treat.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Paragraph gaps too big??’ is closed to new replies.