Shopify themes, liquid, logos, and UX
Hello fellow Shopifiers....
Is there a way to move the vertical filter menu to the right side of collection, I'm using Dawn Theme.
Cheers Lars
Solved! Go to the solution
This is an accepted solution.
Hey @larsvilhelmsson,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
.facets-vertical.page-width {
flex-direction: row-reverse !important;
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
This is an accepted solution.
Hi Larsvilhelmsson,
To Shift Filter to the right you need to
1. Go to "Edit Code"
2. Search for "component-facets.css"
3. Go to around line 1035 there will be this code
@media screen and (min-width: 750px) {
.facets-vertical {
display: flex;
}
4. Change or replace this code with
@media screen and (min-width: 750px) {
.facets-vertical {
display: flex;
flex-direction: row-reverse;
}
Thats all
Hope you find this solution helpful
This is an accepted solution.
Hey @larsvilhelmsson,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
.facets-vertical.page-width {
flex-direction: row-reverse !important;
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
This is an accepted solution.
Hi Larsvilhelmsson,
To Shift Filter to the right you need to
1. Go to "Edit Code"
2. Search for "component-facets.css"
3. Go to around line 1035 there will be this code
@media screen and (min-width: 750px) {
.facets-vertical {
display: flex;
}
4. Change or replace this code with
@media screen and (min-width: 750px) {
.facets-vertical {
display: flex;
flex-direction: row-reverse;
}
Thats all
Hope you find this solution helpful
Cheers! Worked wonders! Tack, Thanks and Merci!
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025