How to align filters and collection in my online store?

Hello

I messed up somewhere and now my products are once again showing below my filters. I want the stuff in the collection to be shown on the right side and at the same height of the filters on the left.

Thank you for the help, I don’t know if the link brings you to the collection but you get there by clicking “Dames” on top.

https://wrkfj7veoi545rbu-53265825967.shopifypreview.com

Hey @Bramm ,
Welcome to the Shopify community!
You can follow the instruction below:
Go to Online Store->Theme->Edit code->style.css->paste bellow code in bottom of file.

@media only screen and (min-width: 980px) {
 .cc-facet-filters {
    float: left;
  }
 .cc-filters-results {
 float: left;
 }
}

If you feel like my answer is helpful, please Like and mark it as a solution**.** Let me know if you have any further questions.
Thank you!
Raman

Hi @Bramm

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag


Hope this answer helps.

Best regards,

Victor | PageFly

@Bramm

Please add the code above in theme.liquid

@media (min-width: 768px){ .cc-facet-filters { float: left!important; } .cc-filters-results { width: 100%!important; } }

after looks like this,