Have your say in Community Polls: What was/is your greatest motivation to start your own business?

How Do I change The Width of the Collection List?

How Do I change The Width of the Collection List?

SamaraShuter
Excursionist
14 0 4

I am looking to make my collection list smaller, I am using Prestige theme. 

 

You can view the list here: https://shuter.club/pages/our-artists

Password- rosterclub

 

Thank you

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
9052 2163 2669

Hi @SamaraShuter 

Do you mean like this? 

Made4uoRibe_0-1709069739268.png

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:

 

section#section-template--16793656721682__main .CollectionItem {
    min-width: 25%;
}

 

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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

PageFly-Richard
Shopify Partner
4801 1084 1750

Hi @SamaraShuter 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
@media screen and (min-width: 1023px) {
.CollectionItem {
    min-width: 25%;
}
}
</style>

If you want 5 collection per row, then use this code

<style>
@media screen and (min-width: 1023px) {
.CollectionItem {
    min-width: 20%;
}
}
</style>

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly

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


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


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

DanubeEcom
Tourist
10 0 1

Hi Richard,

I have the similiar issue with the prestige theme, nevertheless, pasting the code but nothing happends. What am i doing wrong? Ps, it worked once and then the "collection banner" was misplaced and i haven't been able to restore it since.