How can I reduce homepage board spacing from 40px to 20px?

Can anyone help me with a problem of reducing the spacing of the boards in the home page, the actual spacing is 40px and I want to reduce it to 20px. thank you all very much!

Hi @AXBOXING ,

Please send your site and if your site is password protected, please send me the password. I will check it.

My website is axboxingshoe.com
No password protection, thank you very much for your reply, thank you!

Hi @AXBOXING ,

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

@media (min-width: 768px){
	.section-spacing {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}
}
.section-spacing {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

Hope it helps!