How to move collection description below the images? i am using theme streamline

Topic summary

Goal: Move the collection description to appear below the images in the Streamline theme.

Proposed solution: Manually edit the collection template. Locate the Liquid block that renders the description:

  • If block: {% if collection.description != blank %} {{ collection.description }} {% endif %}
  • Cut this block and paste it in the desired position lower in the template (i.e., after the image section).

Key context: collection.description is a Shopify Liquid variable that outputs the collection’s description. Repositioning this block changes where the description displays on the collection page.

Outcome: No confirmation of success from the original poster. The discussion provides a clear code-level approach but remains open without verified resolution.

Notes: The included code snippet is central to implementing the change.

Summarized with AI on February 14. AI used: gpt-5.

How to move the collection description below the images??? i am using theme streamline

Hey there!

You will have to edit your code to achieve this. Go to your collection template and look for:

{% if collection.description != blank %}
        
          {{ collection.description }}
        

      {% endif %}

Cut it out and put it anywhere you think its better.