Pacific Theme - Collection list Wide screen

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

@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;}
}

Hey Suyash,

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

@coldstartnz - try this one

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

that doesnt work either

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

Hey, Thats not what I see on my computer

@coldstartnz - what is your screen size?

27 inch

@coldstartnz add this css and check

@media (min-width: 1401px) {
.home-module .home-module-content{max-width: 100%;}
}

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

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

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

@coldstartnz - please add this

.home-collection-list-item-content {
    display: none;
    visibility: hidden;
}

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

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.

Thank you!