Hello there,
I Need a way to align the description text to the left-hand side for all the product pages. It seems there is no built-in customization option for the Shopify theme (Dawn)
Also, the quality button is aligned on the left without customization options. Need to bring it to the center aligning with the add to cart button.
Website URL: https://fitnessnbalance.com/products/fnb-1-pcs-2-5-20kg-rubber-covered-barbell-disc-plates
Image for reference:
Thanks for any help in advance!
1 Like
@thisiskishor Add code in your css file
base.css
.product__description {
text-align: left;
}
.price-per-item__container {
justify-content: center;
}
Hi @thisiskishor
Check 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:
.price-per-item__container {
display: flex;
justify-content: center;
}
.product__description.rte.quick-add-hidden {
text-align: left;
}
And Save.
Result:
Thank you! It worked like a charm!
1 Like