Full width collection list Turbo theme

Hi there

Some sections in the turbo theme e.g. slider and footer have a full width toggle however the collection list section does not have this functionality. Grateful if someone can advise how I edit the code to replicate the full width functionality for the collection list section

website is www.trendingstyles.co.uk

Many thanks

Hi @elliotb

You can add this code to Custom CSS to make that section full width

#shopify-section-template--23371070046509__144f3147-7322-4d39-a964-fbccf9ad24bf .section {
    max-width: 100%;
    width: 100%;
}

Hi @elliotb , you can follow these steps:

Step 1: Open Online Store → Themes → Edit code.

Step 2: Find component-card.css file

Step 3: Paste this code at the bottom of the file

#shopify-section-template--23371070046509__144f3147-7322-4d39-a964-fbccf9ad24bf > section.section {
    max-width: 100% !important;
    width: 100% !important;
}

If this is helpful, please let us know by giving us a like and marking it as a solution. Thank you :heart_eyes:

Hi @elliotb

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file styles.css and add this code at the end of the file

div#shopify-section-template--23371070046509__144f3147-7322-4d39-a964-fbccf9ad24bf .section {
    max-width: 100% !important;
}

Result

Best,

DaisyVo

@elliotb

How to Add This to Shopify Dawn Theme:

  1. Go to Shopify Admin → Online Store → Themes.
  2. Click “Customize” on your Dawn theme.
  3. In the theme editor, go to “Theme settings” (bottom left).
  4. Scroll down and click “Custom CSS”.
  5. Paste the above CSS code and save changes.

Alternative (Edit Theme CSS Directly):

  1. Go to “Online Store” → “Themes”.
  2. Click “Actions” → “Edit code”.
  3. Open base.css inside the assets folder.
  4. Paste the CSS at the bottom and Save.
section.section {
    max-width: 100% !important;
    width: 100% !important;
}

If you found this helpful, we’d really appreciate it if you could give it a thumbs up and mark it as the solution!