Adding HTML for an accordion

You can add an accordion style section to a product description, page or blog. All you need is some simple HTML.

Edit the page that you want to add an accordion to then click the icon (<>) to switch to HTML mode…

Then paste in the simple HTML for your accordion.

For example this will give you an accordion with 2 sections…

<div class="gt-accordion">
<h4>First section title</h4>
<div>Content for first section goes here</div>
<h4>Second section title</h4>
<div>Content for second section goes here</div>
</div>