Contact Forms

If you haven’t installed our demo content but want to add a contact form to your website, we recommend using the popular Contact Form 7 plugin.

This plugin is included as a recommended plugin with our theme. Once you install and activate it, a basic contact form will be automatically created. You can place it on your page using Elementor.

Alternatively, you can create a custom form by navigating to:
Dashboard → Contact → Add New

For detailed instructions, refer to the Contact Form 7 Documentation.

limpid Theme Contact Forms Code:

<div class="row justify-content-center">
        <div class="col-lg-6">
            <div class="form-group">
                [text* text-648 class:form-control placeholder "Name"]
            </div>
        </div>
        <div class="col-lg-6">
            <div class="form-group">
                [email* email-571 class:form-control placeholder "Email"]
            </div>
        </div>
        <div class="col-lg-6">
            <div class="form-group">
                [number* number-900 class:form-control placeholder "Phone"]
            </div>
        </div>
        <div class="col-lg-6">
            <div class="form-group">
                [text* text-777 class:form-control placeholder "Subject"]
            </div>
        </div>
        <div class="col-lg-12">
            <div class="form-group">
                [textarea* textarea-941 class:form-control placeholder] Message [/textarea*]
            </div>
        </div>
        <div class="col-lg-12 text-center">
            <div class="submit-btn text-center">
                <button type="submit" class="default-btn">
                    Submit Now
                </button>
            </div>
        </div>
    </div>