• Resolved markest

    (@markest)


    Hi,

    I want to increase the white space between paragraphs.

    Can you tell me how to increase the top margin to 18px and the bottom margin to 27px please?

    Regards,

    Mark

Viewing 6 replies - 1 through 6 (of 6 total)
  • Jeroen Verhoeven

    (@jeroen-verhoeven)

    Hi Mark,

    You can do this by editing your theme’s CSS.

    p{
    margin: 18px, 0, 27px , 0;
    }

    (note that you need to add the current margins)

    Hope this helps!

    Thread Starter markest

    (@markest)

    Thank you.

    What do you mean when you said:
    note that you need to add the current margins

    Jeroen Verhoeven

    (@jeroen-verhoeven)

    Hi Mark,

    I mean that your theme’s CSS already has a margin for paragraphs. If you want more margin above and below, you’ll need to add 18px and 27px margins.

    If your code is like this now:

    p{
    margin: 20px,50px,20px,50px;
    }

    You need to add the desired margins, like this:

    p{
    margin:38px,50px,47px,50px;
    }

    Note that the marings are clockwise (38 = above, 50 = right, 47 is bottom, 50 is left)

    Thread Starter markest

    (@markest)

    Okay, got it thanks.

    Mark

    Menaka S.

    (@menakas)

    Hi @markest,
    Is your issue solved?

    Thread Starter markest

    (@markest)

    This is and you are responding to my css question in another thread.

    Thanks

    Mark

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change size of margin around a paragraph’ is closed to new replies.