change font size of collapsible row on product template

Topic summary

A user wants to reduce the font size of collapsible row headings on their product template page.

Setup details:

A solution was provided:

  • Navigate to base.css
  • Add the following CSS code at the end:
.accordion__title {
  font-size: 1.2rem;
}

This targets the accordion title element and reduces its font size to 1.2rem. The issue appears resolved with this straightforward CSS customization.

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

hello, i want to change the size of my collapsible row heading on product template to make it smaller

my theme is dawn, website url is www.rosella-elegance.com , password is mechaw

Hi @ads18922 , Go to base.css and add the following code at the end of it :

.accordion__title {
    font-size: 1.2rem;
}