How can I eliminate all white space on my homepage?

Hi, we want to remove all the white space on our homepage. I will send attach some images of what I mean.

can anyone help?

url: www.luxehomedecor.co.uk

Hi @Jessicagregson ,

Go to Assets > theme.css and paste this at the bottom of the file:

.homepage-blog, .homepage-collection, .homepage-columns, .homepage-icons, .homepage-newsletter, .homepage-product {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

Hope it helps!

Hello @Jessicagregson

Try this code- it will be helpful:

Go to the online store > Theme >Edit Code >theme.css >Add code in this file.

.homepage-blog, .homepage-collection, .homepage-columns, .homepage-icons, .homepage-newsletter, .homepage-product, .homepage-collection-grid {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}