Hi again,
My client wants smaller contact forms in the sidebar. I’ve tried playing with css in FF web inspector but there’s so many settings I can’t isolate the ones I need.
Basically I need
1. Less high entry fields.
2. Smaller spaces in between each field
3. Smaller space at the bottom,
4. Smaller submit button
And basically anything that’ll make it not as high.
http://217.147.86.171/~mainline/
Cheers
Masten
Hello Masten!
Try with this CSS code:
.ajax_form, .ajax_form fieldset{
margin-bottom: 0 !important;
}
.ajax_form p{
margin: 5px 0 !important;
}
.ajax_form label{
margin-bottom: 0 !important;
}
.ajax_form input {
padding: 8px !important;
}
Result:
Best regards,
Josue
Awesome mate, thanks :)
M