Announcement

Collapse
No announcement yet.

FAQ Accordion Code

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    FAQ Accordion Code

    I was wondering if there is any documentation on adding the FAQ Accordion code like on the following demo page:

    https://shadows.mivareadythemes.com/faqs.html

    #2
    This is actually a HTML5 feature, https://developer.mozilla.org/en-US/...lement/details

    When using the details HTML element it creates the accordion functionality by default. You should be able to replicate by using this structure (note you may need to alter the CSS to account for your specific layout):

    Code:
    <details open>
    <summary>Miva Merchant</summary>
    <p>At Miva, our mission is to empower independent sellers to control their destiny and thrive. We help businesses exceed their own expectations, sell their own way, and succeed on their own terms.</p>
    </details>
    Nicholas Adkins
    Technical Training Specialist / Miva, Inc.
    [email protected]
    https://www.miva.com/mivalearn

    Comment


      #3
      Perfect, thank you!

      Comment

      Working...
      X