Solved

Set 2 products per row in all collections in mobile version

nalnowaeam
Shopify Partner
60 1 9

Hi I am using alchemy theme and I want to set 2 products per row in all collections only in the mobile version regardless the number of products per row is in the desktop version. In theme customiser I am only able to set the desktop products per row and it chooses accordingly how many per row in mobile (its either 1 or 2)

I want to make it always 2. How can I do that?

https://wasmamansour.com/collections/candles

Accepted Solution (1)

PageFly-Kate
Shopify Partner
1085 324 320

This is an accepted solution.

Hi @nalnowaeam ,

 

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/styles.css->paste below code at the bottom of the file:

@media screen and (max-width: 767px) {
    .filters-results .card {
        width: calc(50% - 20px) !important;
    }
}

I hope it would help you

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 2 (2)

PageFly-Kate
Shopify Partner
1085 324 320

This is an accepted solution.

Hi @nalnowaeam ,

 

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/styles.css->paste below code at the bottom of the file:

@media screen and (max-width: 767px) {
    .filters-results .card {
        width: calc(50% - 20px) !important;
    }
}

I hope it would help you

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

devind1
Visitor
1 0 0

I'm want to do the same, but I'm confused because I can't find a styles.css folder under assets. (I'm using the dawn template.) Does it have a different name in Dawn theme?