Impulse Add white space between filter and collection start

Hi,

im looking to add more white space before the collection images start

iys a bit crammed against the top where the filter and sort buttons are

my site is https://luxurymrkt.com/collections/newest-products

Please add below css code in bottom of assets/theme.css file

@media (max-width: 767px)

.collection-grid__wrapper .grid.grid–uniform.small–grid–flush {
margin-top: 20px;

}
Thank you.

you can add to top of file theme.css

@media (max-width: 767px){
.collection-grid__wrapper .grid.grid–uniform.small–grid–flush {
margin-top: 20px !important;
}
}

1 Like

@PageFly-Victor the best. If anyone needs help private message him he has helped me so much with my website !!! Thank you

Sorry one more ques. Is it possible to add white space before each row of items?

And make the images smaller

but keep the text layout the same as is?

Thank you very much :heart_eyes:

you can add new code and remove old code

@media (max-width: 767px){
.collection-grid__wrapper .grid.grid–uniform.small–grid–flush >div {margin-top: 20px !important;}
.collection-grid__wrapper .grid.grid–uniform.small–grid–flush >div img{
width:80% !important;
margin-left:10% !important;
}
}

1 Like