Craft Theme - Changing # of collections per row in collection grid

I am using craft theme and want to make my homepage should 5 collections per row instead of the 3 right now. Thank you!

Hi @tatumutv

You can follow those steps to have five collections per row on the homepage instead of three.

  1. Go to your Themes > Edit code > Assets > Open section-collection-list.css > Find collection-list.grid–3-col-tablet .grid__item > Change percent from 33.33% to 19%
.collection-list.grid--3-col-tablet .grid__item {
    max-width: calc(19% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any questions!

This worked perfectly!!! Thank you so much.

1 Like

Hi @tatumutv

You’re welcome!

@AvadaCommerce : Is there a way to apply this only to a specific Collections template?