Okay
  Public Ticket #1063950
Spacing on Homepage
Closed

Comments

  •  2
    Samuel started the conversation

    Hi! So I'm still working on the site but for now I have a coming soon page. Currently on the homepage there is only an image but the space above it and below it is pretty drastic. How can I reduce that space? Thanks!

  •  291
    Paul replied

    Hi Samuel!

    You would have to use custom CSS to adjust that. Please try this:

    #header-container {
        margin-bottom: 0;
    }
    .post-content-container {
        padding: 0 !important;
    }
    .post-item {
        margin: 0 !important;
    }
    .copyright-social-wrapper {
        margin-top: 0;
    }
    

    You can apply the code by going to "Appearance > Customize > Additional CSS".

    If you would also like to use custom CSS for other elements, I recommend Developer Tools on Chrome or Firebug on Firefox to inspect the elements on the page. Then you will know which CSS selector to adjust.

    More info: https://uxbarn.com/inspecting-elements-developer-tools/

    Regards,
    Paul

  •  2
    Samuel replied

    Perfect! Thanks so much Paul. Cheers!

  •  291
    Paul replied

    You're welcome! Don't forget to remove it out once your site is ready.