Make Collection Images Full Width on Mobile

Solved

Make Collection Images Full Width on Mobile

Mg71
Excursionist
48 0 8

How can I make the collection images full width on mobile without the second image on the side showing?

I'd also like to keep the slider under the collections. I'm using pipeline. 

 

 

Thanks!

Screenshot 2024-07-01 120631.png

 

Accepted Solutions (2)

Made4uo-Ribe
Shopify Partner
9875 2353 2951

This is an accepted solution.

Hi @Mg71 

check this one. 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 767px) {
    [data-grid]:not([data-grid-no-gutters]), [data-grid][data-grid-no-gutters], [data-grid] {
        width: 100%;
    }
    .list__collections [data-grid], [data-grid][data-grid-small] [data-item] {
        width: 100%;
    }
    .wrapper.section-padding.title-center {
    padding-right: 0px;
}
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1719851030074.png

     

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Made4uo-Ribe
Shopify Partner
9875 2353 2951

This is an accepted solution.

Do you mean this one right? 

Made4uoRibe_0-1720038326863.png

 

You can replace on this one. 

 

@media only screen and (max-width: 767px) {
    [data-grid]:not([data-grid-no-gutters]), [data-grid][data-grid-no-gutters], [data-grid] {
        width: 100%;
    }
    .list__collections [data-grid] {
        width: 100%;
    }
    .wrapper.section-padding.title-center {
    padding-right: 0px;
}
}

 

 And Save. 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 5 (5)

BSSCommerce-HDL
Shopify Partner
2305 834 907

Hi @Mg71
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag: 

@media only screen and (max-width: 767px) {
 .list__collections [data-grid] .grid__item {
    width: 100% !important;
 }
 .list__collections [data-grid] {
    padding-left: 0 !important;
 }
}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

BSS-TekLabs
Shopify Partner
2401 695 830

- Here is the solution for you @Mg71 
- Please follow these steps: 

step.png

- Then find the theme.css file.
- Then add the following code at the end of the file and press 'Save' to save it.

@media only screen and (max-width: 767px) {
.list__collections [data-grid] .grid__item {
    width: 96% !important;
}
}

- Here is the result you will achieve:

BSSTekLabs_0-1719850463541.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Made4uo-Ribe
Shopify Partner
9875 2353 2951

This is an accepted solution.

Hi @Mg71 

check this one. 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 767px) {
    [data-grid]:not([data-grid-no-gutters]), [data-grid][data-grid-no-gutters], [data-grid] {
        width: 100%;
    }
    .list__collections [data-grid], [data-grid][data-grid-small] [data-item] {
        width: 100%;
    }
    .wrapper.section-padding.title-center {
    padding-right: 0px;
}
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1719851030074.png

     

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Mg71
Excursionist
48 0 8

How can I exclude the related products collection from being grouped in this? I'd like that to not be changed.  Thanks!

Made4uo-Ribe
Shopify Partner
9875 2353 2951

This is an accepted solution.

Do you mean this one right? 

Made4uoRibe_0-1720038326863.png

 

You can replace on this one. 

 

@media only screen and (max-width: 767px) {
    [data-grid]:not([data-grid-no-gutters]), [data-grid][data-grid-no-gutters], [data-grid] {
        width: 100%;
    }
    .list__collections [data-grid] {
        width: 100%;
    }
    .wrapper.section-padding.title-center {
    padding-right: 0px;
}
}

 

 And Save. 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.