Hi,
Thanks for this – finally found some time this morning to have a play with this…! I am pleased to say your suggestion worked (with a few tweeks).
For information (in case anyone else is having a similar issue)…
My original code was this
<label> Your Name (required)
[text* your-name] </label>
<label> Your Email (required)
[email* your-email] </label>
<label> Your Telephone
[tel tel-618] </label>
<label> Type of Event
[radio radio-906 "Wedding" "Corporate" "Birthday" "Other"] </label>
<label> Date of Event (required)
[date* date-406] </label>
<label> Location of Event (required)
[text* text-985] </label>
<label> Your Message
[textarea your-message] </label>
[submit "Send"]
The label tags didn’t work with the bootstrap grid system, so these needed to be removed. The following gave me an identical appearance but with the responsive capability:
<div class="col-md-12 form-controls">
<div class="row">
<strong>
<div class="col-md-12">
Your Name (required):
[text* your-name]
</div>
<div class="col-md-12">
Your Email: (required)
[email* your-email]
</div>
<div class="col-md-12">
Your Telephone:
[tel tel-618]
</div>
<div class="col-md-12">
Type of Event:
[radio radio-906 "90s event" "Corporate" "Birthday" "Wedding" "Other"]
</div>
<div class="col-md-12">
Date of Event (required):
[date* date-406]
</div>
<div class="col-md-12">
Location of Event (required):
[text* text-985]
</div>
<div class="col-md-12">
Your Message:
[textarea your-message]
</strong>
</div>
</div>
</div>
[submit "Send"]
Thanks for your help Whimsy Collective…!
Rog
-
This reply was modified 7 years, 7 months ago by wollyroger.
-
This reply was modified 7 years, 7 months ago by wollyroger.