Iād like to align the collapsible row test to the left (rather than being central).
Any advice is really appreciated.
URL: https://www.brain-boost.co.uk/products/chocolate-powder
Theme: Dawn
A user wants to left-align text within collapsible rows on their Shopify product page, which currently appears centered.
Proposed Solution:
.product__accordion .accordion__content.rte p { text-align: left; }The discussion includes a product URL example (brain-boost.co.uk) using the Dawn theme. The solution involves a straightforward CSS customization to override the default text alignment for accordion content paragraphs.
Iād like to align the collapsible row test to the left (rather than being central).
Any advice is really appreciated.
URL: https://www.brain-boost.co.uk/products/chocolate-powder
Theme: Dawn
Hi,
To solved, you can change the style for it by go to:
Admin ā Theme ā Customize Code ā assets ā component-rte.css
And then add the code to this file:
.product__accordion .accordion__content.rte p{
text-align: left;
}