How can I add a grid to my Symmetry Theme collection page?

Topic summary

A Symmetry Theme user wants to add a grid layout specifically to collection product pages. They attempted CSS code but encountered issues with the grid not displaying correctly on the collection page only.

Proposed Solutions:

  • Use conditional Liquid templating ({% if template contains 'collection' %}) to target only collection pages
  • Add custom CSS within <style> tags in the theme.liquid file before the </body> tag
  • Apply CSS targeting .collection-listing .product-block with properties for width, border, margin, and padding

Current Issue:

  • The user reports unwanted white space appearing on the right side of the page in both desktop and mobile versions after implementing the suggested code
  • A screenshot was shared showing the spacing problem, but the store URL was not provided for direct troubleshooting

Status: The discussion remains open as the spacing issue needs resolution.

Summarized with AI on November 20. AI used: claude-sonnet-4-5-20250929.

Hi,

I have a store with Symmetry Theme. I want to add a grid only to the collection products.

I tried this code, but the grid is not showing only on the collection.

.collection-listing .product-list–per-row-4 .product-block {
width: 25%;
border: solid 1px #ccc;
margin-bottom: 0px;
padding:10px;
}

I want only here: https://prnt.sc/flgWu20NF-ha

The code above displays here too: https://prnt.sc/oYX-ubHJGtMy

@Salomea try below code in theme.liquid file

{% if template contains 'collection' %}
{% style %}   
.collection-listing .product-list--per-row-4 .product-block {
width: 25%;
border: solid 1px #ccc;
margin-bottom: 0px;
padding:10px;
}
{% endstyle %}
{% endif %}

Hi @Salomea ,

This is Henry at PageFly - Shopify Advanced Page Builder app.

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag

{% if template contains 'collection' %}

{% endif %}

Hope this answer helps.

Best regards,

Henry | PageFly

How can I get rid of the space on the right side of the page? Mobile and desktop versions.

@Salomea Can you share your store url?

Sorry, I can’t give the store URL, but this might help.