Hi there,
I'm a real beginner at this, so apologies for the basic questions. I've tried searching the forums already, and got bits and pieces of it to work, but it's still not quite there yet.
1) Page 1 of my form: My theme's CSS seems to assign font weights to the form labels, and also make everything uppercase. I added the following, but now, the header/question label is no longer bold, and when the radio button is selected, it no longer gets bold either. How can I fix this? Also, can I add spacing between the first question and the next?
#gform_wrapper_3 label {
text-transform: none;
font-size:13px;
font-weight: normal;
}
2) Page 2 of my form: For the radio buttons, I've used CSS Ready Class "gf_list_3col" to split the radio buttons into 3 columns. Is it possible for the radio buttons to be centrally aligned within the columns?
3) Page 2 of my form: Previous/Next buttons. I've used the following to align the Previous/Next buttons to the right, but... my Next button is on the left, and the Previous button is on the right. How can I swap this around?
body #gform_wrapper_3 .gform_body .gform_page_footer .gform_next_button {
float:right;
}
body #gform_wrapper_3 .gform_body .gform_page_footer .gform_previous_button {
float:right;
}
4) Page 3 of my form: Submit button. Any chance of it moving to the right, with the Previous button on the left?
Link to my form:
http://bit.ly/15G6PZd
Thanks in advance for your help!