I have two questions on form format
1. Is there a way to control the size of the input fields or the size of the form?
2. Is there a way to center the title of the form and center the submit button?
Thanks
Hey svreatt!
I’m sure there is, could you please provide a link to the page in question so that we can have a look?
Regards,
Rikard
Hey!
Use this code in Quick CSS:
/* Center Title and Button */
.avia_ajax_form h3 {
text-align: center;
}
.avia_ajax_form input.button {
margin: 0 auto !important;
display: block;
}
/* Adjust Fields */
#top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area {
padding: 6px;
}
Cheers!
Josue
Awesome!
Hopefully these are the last two questions.
1. Can you adjust the space between the form elements?
2. Can you put the form elements title inside the element instead of on top. Trying to save space.
Thanks
Hey!
1. This will do it:
.avia_ajax_form p {
margin-top: 0;
}
2. Unfortunately placeholders are not currently available for the Enfold form.
Best regards,
Josue
Thanks, you guys are the best.