Remove the bold from paragraph on accordion

Topic summary

A user seeks help removing bold formatting from accordion titles on their product pages at phreshcareco.com.au.

Solutions Provided:

Two community members offered similar CSS-based fixes:

  • Method 1: Add custom CSS code above </head> in the theme.liquid file
  • Method 2: Insert CSS before </body> in theme.liquid with the style rule .accordion__title { font-weight: 400 !important; }

Both approaches involve:

  1. Navigating to Shopify Admin β†’ Online Store β†’ Theme β†’ Edit code
  2. Locating the theme.liquid file
  3. Adding CSS to override the default bold font-weight

Status: The discussion remains open with no confirmation from the original poster about whether either solution resolved the issue. A screenshot was referenced but the specific accordion styling details weren’t fully visible in the conversation text.

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

Hey guys,

URL - www.phreshcareco.com.au

I was just wondering how do i remove the BOLD from my accordion on the product pages.

Ive attached a screenshot of what i want it too look like but cant seem to work it out.

Thanks in advance for any help.

1 Like

Hi @Phreshcareco ,

Step 1: Go to Shopify Admin β†’ Online Store ->Theme β†’ Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Hello @Phreshcareco

You can add code by following these steps

  1. Go to Online Store β†’ Theme β†’ Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.accordion__title { font-weight: 400 !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.