Pacific Theme - Collection list Wide screen

Pacific Theme - Collection list Wide screen

coldstartnz
New Member
8 0 0

Hey, I'd like to make my collection lists the full width of the screen.

I've tried several codes but nothings working.

My website is coldstart.co.nz 

Replies 16 (16)

suyash1
Shopify Partner
10968 1357 1734

@coldstartnz please add this css to the very end of your theme.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> theme.css

 

@media (max-width: 1021px) {
.home-module{padding-left: 0; padding-right: 0;}
}

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
coldstartnz
New Member
8 0 0

Hey Suyash,

 

I added it to theme.css.liquid and it hasn't worked

suyash1
Shopify Partner
10968 1357 1734

@coldstartnz - try this one

 

@media (min-width: 1021px) {
.home-module{padding-left: 0 !important; padding-right: 0 !important;}
}
To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
coldstartnz
New Member
8 0 0

that doesnt work either

suyash1
Shopify Partner
10968 1357 1734

@coldstartnz - it works, this is the home page I see, or you want some other page? can you please share the link?

 

suyash1_0-1745979995561.png

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
coldstartnz
New Member
8 0 0

Screenshot 2025-04-30 at 2.36.11 PM.png

Hey, Thats not what I see on my computer

suyash1
Shopify Partner
10968 1357 1734

@coldstartnz - what is your screen size?

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
coldstartnz
New Member
8 0 0

27 inch

suyash1
Shopify Partner
10968 1357 1734

@coldstartnz add this css and check

 

@media (min-width: 1401px) {
.home-module .home-module-content{max-width: 100%;}
}
To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
coldstartnz
New Member
8 0 0

Bingo! Thank you very much.

I have another one for collections, you can see on my collection list the text is white, I'd like to keep it white but highlight the text in black

suyash1
Shopify Partner
10968 1357 1734

@coldstartnz - can you please elaborate? you want to make text black or white?

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
coldstartnz
New Member
8 0 0

forget that actually. How do I delete the collection list title text on the images?

suyash1
Shopify Partner
10968 1357 1734

@coldstartnz - please add this

 

.home-collection-list-item-content {
    display: none;
    visibility: hidden;
}
To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
coldstartnz
New Member
8 0 0

Thank you!

Rashman-tech
Tourist
10 2 0

To make your collection list full width on your Shopify store (coldstart.co.nz), you'll need to edit your theme’s code to remove padding or container limits around the section displaying the collections.

Here’s a step-by-step solution that usually works for themes like Craft or Dawn:

  1. Go to Online Store > Themes > Click “...” on your live theme > Edit Code

  2. Search for the file named collection-list.liquid or main-collection-list.liquid (depending on the theme, it may also be under sections or templates)

  3. Look for a wrapper or div with a class like page-width or grid

  4. Replace or remove that wrapper, or override the width in CSS

Example CSS Fix:

You can also use CSS in your base.css (or theme.css) file to override width restrictions:

.collection-list,
.collection-list .page-width {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}
  1. Go to Assets > base.css or theme.css

  2. Scroll to the bottom and paste the code above

  3. Save and refresh your store

Make sure to clear the browser cache or check in incognito to see the changes.

Accept this as solution if it help out

Rashman

Ouellette
Visitor
3 0 0

I want to make my website in such an angle that there is a picture on one side and content on the other side and a cute background with content written on top. I am all about calculators so I need guidance for this if anyone knows about it.