Reformation Theme - How to add the collapsible content under the tabbed content section?

Topic summary

A user wants to add collapsible content within a tab of the Reformation theme’s tabbed content section.

Proposed Solution:

  • Edit the tabbed-content.liquid file
  • Insert a <details> HTML tag inside the tab structure to create collapsible functionality
  • Apply custom CSS for styling

Implementation Details:
The suggested code uses the native HTML <details> and <summary> elements to create an accordion-style collapsible section that can be nested within existing tab content. The solution involves modifying the Liquid template file directly.

The question appears answered with a working code example, though no confirmation of successful implementation has been provided yet.

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

I want to add the collapsible content section under one of the tabs in the tabbed content section. how do i do this?

Hi,

Hope this will help

  • Edit tabbed-content.liquid file.

  • Add a

    tag for collapsible content inside tab.
    Code example


  {{ tab.content }}

  
  

  • Use CSS for style.