Sorry, forgot link to website
http://walksudbury.ca
Hi there,
I checked your website and the fields are on the same line: http://prntscr.com/cbxid9
Do you still need help here?
Best regards,
Uriahs
Hi, I´ve got the same problem here
http://yrdi.cl/contacto/
Please help, thanks in advance.
Kind regards,
I found some code to put the fields on the same line, but I’d also like to have some extra space in between the fields. Am not sure if I’m using the proper coding because the last field does not line up with the message box right margin.
.pirate_forms_three_inputs {
display: inline-block;
width: 33%;
}
I came up with this solution. If there’s something more elegant, I’d be interested in knowing.
.pirate_forms_three_inputs {
display: inline-block;
width: 30.666%;
margin-right: 4%;
}
.contact_subject_wrap {
margin-right: 0 !important;
}
Hi there,
You should create a media query for mobile devices so the form fits better on mobile devices:
@media screen and (max-width: 414px){
.pirate_forms_three_inputs {
display: block;
width: 100% !important;
margin-right: 0 !important;
}
}
Best regards,
Uriahs