Menus
Toggle Menu
Clicking on a <dt>
should apply .fizz-is-open
to the <dt>
and toggle visibility of the associated <dd>
.
HTML
<dl class="fizz-toggle-menu">
<dt>Header & Logo</dt>
<dd hidden>
<p>Some content</p>
</dd>
<dt class="fizz-is-open">Featured Product</dt>
<dd>
<p>Some content</p>
</dd>
</dl>