How to align collapsible row text to the left

Topic summary

A user wants to left-align text within collapsible rows on their Shopify product page, which currently appears centered.

Proposed Solution:

  • Navigate to Admin → Theme → Customize Code → assets → component-rte.css
  • Add CSS rule: .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.

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

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

1 Like

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;
}