How to make a specific collection list full width

Hello, i’d like to make a specific collection list full width, i tried a method that made all the collection lists full width, i need to make only 1!

Hello @Thecozyliving

can you please share screenshot of the collection list which you want to make full width and also please share your store URL.

Hello, here’re our store link: https://cozycollectivelb.com/
this is the collection list that we need to make full width ( it doesn’t have a heading :disappointed_face:

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

section#shopify-section-template--22333951279417__collection_list_yf9tqH .page-width { padding: unset !important; max-width: 100% !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Thank you! That worked, much appreciated for the help.

I’m glad to help you :blush:

Hi @Thecozyliving

Check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

.section-template--22333951279417__collection_list_yf9tqH-padding {
    max-width: 100%;
    padding: 0;
}

And save.

result:

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