[Dawn Theme] Increase Collection Card Limit to 5 and Reduce Card Size on Mobile Only

[Dawn Theme] Increase Collection Card Limit to 5 and Reduce Card Size on Mobile Only

heathergreg
Tourist
5 0 2

Hello!
I would like to increase the number of collection cards in a single row on mobile from 2 columns to 5. I would also like to reduce the collection card size on mobile only and remove the arrows in the collection title. Please help!

URL is https://driftwoodgirls.com

 

Thank you 🙂

Replies 7 (7)

Made4uo-Ribe
Shopify Partner
8476 2024 2484

Hi @heathergreg 

Try this one. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

@media only screen and (max-width: 989px){
.slider.slider--tablet {
    position: relative;
    flex-wrap: nowrap;
    overflow-x: revert;
}
.card-wrapper.animate-arrow.collection-card-wrapper {
    width: 80%;
    margin: auto;
}
#Slider-template--19619295002942__9f4d56d1-fd46-481a-ad44-03452a17af86 {
    justify-content: center;
    width: 50%;
    margin: auto;
}

slider-component.slider-mobile-gutter.scroll-trigger.animate--slide-in {
    padding-left: 15px;
    padding-right: 15px;
}
span.icon-wrap {
    display: none;
}
}

 

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

     

I hope it help.

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
heathergreg
Tourist
5 0 2

IMG_0310.png


So close! 😩 is there a way to remove that padding? Also is there a way to remove the slider text  ( <      1-3      >) to improve spacing between the collection cards and banner?

Made4uo-Ribe
Shopify Partner
8476 2024 2484

It didnt work for you? On my it works properly, I check also in incognito. 

Try to paste it on the theme.liquid file, before this tag </bod>

 

<style>
@media only screen and (max-width: 989px){
.slider.slider--tablet {
    position: relative;
    flex-wrap: nowrap;
    overflow-x: revert;
}
.card-wrapper.animate-arrow.collection-card-wrapper {
    width: 80%;
    margin: auto;
}
#Slider-template--19619295002942__9f4d56d1-fd46-481a-ad44-03452a17af86 {
    justify-content: center;
    width: 50%;
    margin: auto;
}

slider-component.slider-mobile-gutter.scroll-trigger.animate--slide-in {
    padding-left: 15px;
    padding-right: 15px;
}
span.icon-wrap {
    display: none;
}
.slider-buttons.no-js-hidden {
    display: none;
}
}
</style>

 

And save. 

 

I hope it help.

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
heathergreg
Tourist
5 0 2

Sadly I don't see a </bod> tag in my theme.liquid file... Not really sure where to go from here

Made4uo-Ribe
Shopify Partner
8476 2024 2484

In here. 

Made4uoRibe_0-1693866891451.png

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
heathergreg
Tourist
5 0 2

Okay that worked, but the title font is too large to fit within the container 

heathergreg_0-1693869578099.png

 

heathergreg
Tourist
5 0 2

Is there code I can apply to make the mobile collection label front smaller? Thank you for all of your help!