Remove space in between sections on collection page (debutify theme)

Hello, can someone please assist me with the simple code to remove spaces between sections on collection pages of my website?
www.checkoutfirst.com
Please see sample
Thanks!

@checkoutfirst ,

.box {
    padding: 10px;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

This was adding padding to the left and right sides of every section.
I only want the change to affect the height.

.box {
	padding-top: 10px;
	padding-bottom: 10px;
}

@checkoutfirst ,

update this code with previous code

1 Like