Tagged: CSS, enfold form
Hey guys,
I want to format the form’s theme on two rows. I managed, using the field’s 1/2 option, to get to this point http://i.imgur.com/7LS4OAM.png but I need to end with something like this http://i.imgur.com/3ZU7C77.png.
After a long time trying to do it from the shortcode’s options I am pretty sure it can’t be done from there.
Thank you
Hi,
Can you post the link to this page please?
Regards,
Josue
Hi!
Can you please re-arrange the contact form field elements? The order should be Name, Message, Email then Subject. Set all fields to fullwidth excerpt the Message field. Set it to 1/2. Add this on Quick CSS or custom.css:
.avia_ajax_form p {
width: 48%;
}
.avia_ajax_form p:nth-child(3) {
float: left;
clear: none;
margin-left: 2%;
}
.avia_ajax_form p:nth-child(4) {
margin-top: -50px;
}
.avia_ajax_form p:nth-child(5) {
margin-top: -20px;
}
Regards,
Ismael