How can I create a 3 column product page on the Dawn theme?

Hi team,

I’m looking for a way to make my Dawn product page have 3 columns, left with description, middle with imagery, then purchase button on the right.

A good example is this page: https://eu.aimeleondore.com/products/blanket-striped-cardigan

Is this possible for the Dawn theme?

Thanks

Hello @csmithco ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to Sections → product-template.liquid file

Modify the code to create the desired three-column layout like this:


  

    {{ product.description }}
  

  
    {{ product.featured_image | img_url: 'large' }}
  

  
    {{ product.price | money }}
    
  

Save and preview

Hope this can help.

Transcy.

1 Like

Hey Transcy,

Thanks for this. I don’t appear to have the ‘product-template.liquid’ file in the dawn theme..

Would it be under a different name?

Thanks