Hello, i would like to change the font size for my collapsible row content (content, not headings)
my store is www.antico-abito.com , theme is dawn
Hello, i would like to change the font size for my collapsible row content (content, not headings)
my store is www.antico-abito.com , theme is dawn
Hi @ads18922
I understand — you want to change the font size for the content inside your collapsible rows on your Dawn theme (not the headings). By default, Dawn doesn’t provide a setting for this in the theme editor, but you can fix it with a small CSS tweak.
Here’s how:
Go to Shopify Admin → Online Store → Themes → Actions → Edit code.
Open Assets → base.css (or component-accordion.css
in newer versions).
Add this at the bottom of the file:
/* Change font size for collapsible content */
.accordion__content {
font-size: 16px; /* adjust as needed */
line-height: 1.6; /* optional for readability */
}
16px
value until it looks right.Tip: You can also add color
or font-family
inside the same CSS block if you want to style the text further.
I Hope it’s HELP
Best
Nobbel
Hello @ads18922
Please add this code to Theme settings > Custom CSS
.product__accordion .metafield-rich_text_field h4,
product__accordion .accordion__content.rte h4{
font-size: calc(var(--font-heading-scale) * 1.2rem);
}
.product__accordion .metafield-rich_text_field p{
font-size: calc(var(--font-heading-scale) * 1.2rem);
}