How can I shift the vertical filter menu to the right in Dawn Theme?

Solved

How can I shift the vertical filter menu to the right in Dawn Theme?

larsvilhelmsson
Excursionist
24 0 8

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

 

 

Screenshot 2024-04-24 at 11.09.22.png

Accepted Solutions (2)

ThePrimeWeb
Shopify Partner
2139 616 526

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.

ThePrimeWeb_0-1713952125579.png

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Dawood_Mirza_
Trailblazer
135 18 30

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

Want to work with me - dawoodmirzabusiness@gmail.com
Don't forget to like and mark it as Solution if it was helpful to you.

View solution in original post

Replies 3 (3)

ThePrimeWeb
Shopify Partner
2139 616 526

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.

ThePrimeWeb_0-1713952125579.png

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

Dawood_Mirza_
Trailblazer
135 18 30

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

Want to work with me - dawoodmirzabusiness@gmail.com
Don't forget to like and mark it as Solution if it was helpful to you.
larsvilhelmsson
Excursionist
24 0 8

Cheers! Worked wonders! Tack, Thanks and Merci!