Hi
Sorry for my delay on the reply to your message above. i am back working on this project and still having an issue using the <div class "form-widget custom-submit"></div>
i can get the form to work but it doesnt look great. in order for the message to send i need to delete the following lines of code
<div class="widget quick-contact-widget form-widget clearfix">
and in each of the fields i have to remove class="required form-control"
Please see my video show the process of the form where it is redirected to formbucket and then to a thankyou page.
code i am currently using below.
=============================================
<div class="col-sm-6 col-lg-3">
<div class="form-widget custom-submit"></div>
<h4>SENDEN SIE UNS EINE NACHRICHT</h4>
<form method="post" action="https://formbucket.com/f/buk_G1MgIoEYEMGRicAGpzayz6Pf" >
<input type="hidden" name="_subject" value="Baler Sales Enquiry Germany" />
<label style="display:none">Honey pot </label>
<input type="text" name="bucket_trap" style="display: none" />
<div class="row">
<div class="row">
<div class="form-group">
<div class="col-md-6 col-xl-12">
<div class="input-group mx-auto">
<div class="input-group-prepend">
<div class="input-group-text"><i class="icon-user"></i></div>
</div>
<input type="text" value="" data-msg-required="Please enter your name." maxlength="100" name="name" id="quick-contact-form-name" placeholder="Vollständiger Name" />
</div>
<div class="input-group mx-auto">
<div class="input-group-prepend">
<div class="input-group-text"><i class="icon-email2"></i></div>
</div>
<input type="email" value="" data-msg-required="Please enter your email address." data-msg-email="Please enter a valid email address." maxlength="100" name="email" id="email" placeholder="E-Mail-Adresse" />
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-6 col-xl-12">
<textarea maxlength="5000" data-msg-required="Please enter your message." c rows="4" name="message" id="message" placeholder="Ihre Nachricht"></textarea>
</div>
</div>
</div>
<input type="submit" value="Nachricht absenden" class="button" >
</div>
</div>
</form>