Hi i’m tryng to modify my brookly theme, and as u can see, only on mobile version, in my collection page.
every now and again there is a blank spot in the grid.
how do i correct it?
Hi i’m tryng to modify my brookly theme, and as u can see, only on mobile version, in my collection page.
every now and again there is a blank spot in the grid.
how do i correct it?
@roberta84 - please add this css to the very end of your theme.scss file and check
@media screen and (max-width: 600px){
#CollectionSection .grid__item {width: 50%; min-height: 430px;}
}
Hi @roberta84
We noticed it was still being displayed outside on page 2:
Please follow these steps:
@media screen and (max-width: 600px){
#CollectionSection .grid__item {
height: 440px;
}
}
We hope that this can help you.