What's your biggest current challenge? Have your say in Community Polls along the right column.

Move "remove all" in collection page

Solved

Move "remove all" in collection page

manbru1
Visitor
1 0 0

Hey,

 

Right now the "remove all" is beside the filters you've selected, like this:

Skärmavbild 2024-11-25 kl. 22.47.54.png

 

But I want the "remove all" to be under the selected filters, like this:

Skärmavbild 2024-11-25 kl. 22.47.36.png

 

Here's my collection page: 

https://r1vex.myshopify.com/collections/4?filter.p.product_type=Babyoveraller&filter.p.product_type=... 

 

 

Thanks for helping!

Accepted Solution (1)

AnneLuo
Shopify Partner
1138 211 235

This is an accepted solution.

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 (max-width: 768px) {
    #main-collection-filters > div > div.active-facets.active-facets-mobile.medium-hide.large-up-hide {
        flex-direction: column !important;
    }
   facet-remove {
      width: fit-content;
      margin: 0 auto !important;
   }
}
</style>

Result:

AnneLuo_0-1732583794089.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

View solution in original post

Reply 1 (1)

AnneLuo
Shopify Partner
1138 211 235

This is an accepted solution.

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 (max-width: 768px) {
    #main-collection-filters > div > div.active-facets.active-facets-mobile.medium-hide.large-up-hide {
        flex-direction: column !important;
    }
   facet-remove {
      width: fit-content;
      margin: 0 auto !important;
   }
}
</style>

Result:

AnneLuo_0-1732583794089.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