Hi. Each of my page lists 4 products on each line. However when I search for an item, the line increase to 5 products. How I can make it 4 like others ?
Thank you.
Hi. Each of my page lists 4 products on each line. However when I search for an item, the line increase to 5 products. How I can make it 4 like others ?
Thank you.
Hi @Narquila ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community!
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
password: ishelo
password: ishelo
Hi @Narquila ,
You can follow the instruction below:
@media (min-width: 750px) {
.template-search .grid__itemv {
width: 25% !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hi,
I tried but still shows 5 items. I even tried width: 50% !important, nothing changed. Thank you.
Hi @Narquila ,
sorry I was wrong. You can copy below code again in theme.scss:
@media (min-width: 750px) {
.template-search .grid__item {
width: 25% !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hi @Narquila ,
You can copy below code again in theme.scss:
@media (min-width: 750px) {
.template-search .grid--no-gutters {
display: flex !important;
flex-wrap: wrap;
}
.template-search .grid__item {
width: 25% !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.