Site logo

[Support request] How to create a larger space between Gutenberg Blocks

Home Forums Support [Support request] How to create a larger space between Gutenberg Blocks

Home Forums Support How to create a larger space between Gutenberg Blocks

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #2474283
    talwhite

    Hello,

    Is there any way to set a default amount of space between Gutenberg blocks?

    Thank you,

    Tal White

    #2474295
    Fernando
    Customer Support

    Hi Talwhite,

    One way would be to use custom CSS code.

    For instance, this CSS code targets the top and bottom margins of all Paragraphs and H1s:

    p, h1 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    Are you wanting to create a default spacing for all elements in a page’s content?

    #2474406
    talwhite

    Hello Fernando,

    Yes, I want to create a default spacing for all elements in a page’s or post’s content.

    Any thoughts are appreciated.

    #2474412
    Fernando
    Customer Support

    I see.

    This CSS code adds top and bottom margins to all nodes/elements inside your post’s content:

    .single-post .entry-content * {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    #2474427
    talwhite

    Where would I post the CSS code?

    #2474433
    Fernando
    Customer Support

    In Appearance > Customize > Additional CSS.

    #2474908
    talwhite

    Hi Fernando,

    Thank you …

    I noticed I already have some info in Appearance > Customize > Additional CSS:

    .post-image {
    margin-bottom: 0!important;

    Should this be deleted? Does it override your code of:

    .single-post .entry-content * {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    }

    Thank you for your patience!

    #2475072
    Leo
    Staff
    Customer Support

    Can you link us to the page in question?

    #2475995
    talwhite

    Hello,

    My goal is to have 15px spacing between any block within any/all WordPress posts or pages.

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.