We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Custom collection display

Custom collection display

evatrnt
Tourist
9 0 4
Replies 2 (2)

AnneLuo
Shopify Partner
1381 240 281

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
@media screen and (max-width: 749px) { 
.grid-outer {
   padding: 0 !important;
}
.grid--mobile-slider {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left:0 !important;
    padding-right: 0 !important;
}
}
</style>

Result:

AnneLuo_0-1732148699703.png


Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

evatrnt
Tourist
9 0 4

On mobile it looks very off, can you fix it? Image attached:

evatrnt_0-1732207419741.png