Accordion Shortcode

Provide contextual feedback messages for typical user actions with the handful
of available and flexible alert messages.

Get Started

Variations


Accordion component allows you to toggle content on your pages with a few classes.

Is this a secure site for purchases?
Absolutely! We work with top payment companies which guarantees your safety and security. All billing information is stored on our payment processing partner which has the most stringent level of certification available in the payments industry.
Currently, we only offer monthly subscription. You can upgrade or cancel your monthly account at any time with no further obligation.
You can cancel your subscription anytime in your account. Once the subscription is cancelled, you will not be charged next month. You will continue to have access to your account until your current subscription expires.
<div class="accordion" id="accordion-1">
    <div class="card">
        <h5 class="card-title">
            <a data-toggle="collapse" href="#collapse-1-1">Is this a secure site for purchases?</a>
        </h5>
        <div id="collapse-1-1" class="collapse show" data-parent="#accordion-1">
            <div class="card-body">
                Absolutely! We work with top payment companies which guarantees your safety and security.
                All billing information is stored on our payment processing partner which has
                the most stringent level of certification available in the payments industry.
            </div>
        </div>
    </div>

    <div class="card">
        <h5 class="card-title">
            <a class="collapsed" data-toggle="collapse" href="#collapse-1-2">How long are your contracts?</a>
        </h5>
        <div id="collapse-1-2" class="collapse" data-parent="#accordion-1">
            <div class="card-body">
                Currently, we only offer monthly subscription. You can upgrade or cancel
                your monthly account at any time with no further obligation.
            </div>
        </div>
    </div>

    <div class="card">
        <h5 class="card-title">
            <a class="collapsed" data-toggle="collapse" href="#collapse-1-3">Can I cancel my subscription?</a>
        </h5>
        <div id="collapse-1-3" class="collapse" data-parent="#accordion-1">
            <div class="card-body">
                You can cancel your subscription anytime in your account. Once the subscription is cancelled,
                you will not be charged next month. You will continue to have access
                to your account until your current subscription expires.
            </div>
        </div>
    </div>
</div>

Try it for free

Already using Vertex? Sign in