Put content below images in a collection page on Dawn theme

Topic summary

A user needs help repositioning collection page text to appear below product images instead of above them on the Dawn theme.

Initial Confusion:

  • The issue was initially misidentified as being on the Turbo theme, but was later confirmed to be on Dawn.
  • A support member first provided instructions for the theme editor’s drag-and-drop interface, which didn’t match what the user was seeing.

Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS code at the bottom:
.has-sidebar-option.sidebar-enabled--false {
    display: flex;
    flex-direction: column-reverse;
}
  • Save the changes

This CSS solution uses flexbox to reverse the column order, moving content below the product grid. The discussion appears resolved with a working code-based fix.

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

Hi, can someone please help me understand how to get my collection page content/text copy placed after the collection images (below it instead of on top)?

Thanks,

Dean

1 Like

Hi @Jessica_Luntz

Would you mind to share your Store URL website? with password if its protected. Thanks!

Hi it’s Teethers - Baby Teething Toys & Accessories - The Teething Egg

1 Like

Thank you, just for clarification you like the product above in the content?

Did you try it to the theme editor?

Go to the Online Store.

Click customize.

Search the page you like to change.

Drag the 6 dots.

And place it where youll like to place.

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

Hi,

I am not seeing the same thing?

Aggg .. just realized this is the Turbo theme not Dawn

1 Like

Oh okay, I just notice it now also when Im fixing it. Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.has-sidebar-option.sidebar-enabled--false {
    display: flex;
    flex-direction: column-reverse;
}

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