Hi,
I need to place a radiobutton, 3 dropdowns, 1 input field and a submit button on a single line,
but I can't seem to get it to align properly
It's the Form at the footer here;
http://php.purejs.com/phrisk/
Hi,
I need to place a radiobutton, 3 dropdowns, 1 input field and a submit button on a single line,
but I can't seem to get it to align properly
It's the Form at the footer here;
http://php.purejs.com/phrisk/
Try this out in your theme's stylesheet:
[css]
#input_4_4 {
margin-top: 0;
}
#field_4_6 {
margin-left: 20px;
}
#field_4_7 {
margin-left: 40px;
}
#field_4_9 {
margin-left: 15px;
}
awesome, thanks!
I would like to have the textbox and submit buttons on the same line. Much like on the bottom right of this site [text box]"add"
Can you post a link to your form so I can check it out?
Hi Rob, on my same form I had to add html and password, but can't get the password fields to align with the create a password.
thanks in advance!
Emily, try replacing these two blocks of css, with the following:
[css]
#field_4_11 {
width: 440px;
padding: 0;
margin-left: 440px;
margin-top: -45px;
}
body #gform_wrapper_4 .gform_footer {
width: auto;
position: absolute;
top: 106px;
left: 950px;
padding: 0;
margin: 0;
}
awesome, you are da man!
Glad to help! :)