On my website I had it set up so the description was under the product info and fit across the bottom of the container. It changed at some point and I just noticed now. How do I move it back?
Could your share your store URL?
Would you mind to share your Store URL website? with password if its protected. Thanks!
HI,
We need to customize the product template to move the product description under photos.
Thank you for the information. You can 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:
.product.product--small.product--left.product--thumbnail_slider.product--mobile-hide.grid.grid--1-col.grid--2-col-tablet {
flex-direction: column;
align-items: center;
}
- And Save.
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks but I only want to move the description. The rest I want to stay where it is.
Oh, Okay only the description you like to center down the product image and info right?
Try this one then.
- 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:
@media only screen and (min-width: 750px) {
.product:not(.product--no-media):not(.featured-product) .product__description {
position: relative;
width: 200%;
right: 100%;
margin-top: 160px;
}
.pi {
text-align: center !important;
}
}
- And Save.
- Result:
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css
.product__description.rte.quick-add-hidden {
display: flex;
flex-direction: column;
align-items: center;
}
.pi {
display: flex;
align-items: center;
flex-direction: column;
}
Hope you find my answer helpful!
Best regards,
Richard | PageFly
Its moving it to the left but not increasing the width and it only works in theme.liquid. Also on the customize page it shows centered but on the site its to the left.
I have found the solution:
In main-product.liquid- find
right before that paste:
{%- if product.description != blank -%}
## Description
{{ product.description }}
{%- endif -%}
Then the description will be below the product photos and info and you can customize it like normal.
Here’s where I found it:
https://ezfycode.com/blog/dawn-theme-show-description-below-images
Please add this code.
.product:not(.product--no-media):not(.featured-product) .product__description {
max-width: 200% !important;
}
Yeah, you can try also to paste in liquid.



