Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @handmadehome,


    This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:
    ?

    /* remove the content bottom space on home page */
    .home.page-template-template-homepage-php .site-main,
    .home.page-template-template-homepage-php .content-area,
    .home.page-template-template-homepage .is-layout-flex.wp-container-10.wp-block-columns,
    .home.page-template-template-homepage .type-page {
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }

    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    Hi there,

    There are some bottom margins and padding that are creating issues. Try this CSS code to remove the blank space:

    .home.page-template .site-main,
    .home.page-template .content-area,
    .home.page-template .is-layout-flex,
    .home.page-template .type-page {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    }

    Thanks!

    Thread Starter handmadehome

    (@handmadehome)

    Works great! Thank you so much!

    Hi @handmadehome,

    You’re welcome, glad it’s working fine now. If you have any new questions, please create a new ticket.

    Cheers!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Blocks spacing’ is closed to new replies.