Hi guys,
Is there a way I can customize 2 out of 5 forms I've got on the site using something like this:
body #gform_wrapper_1 #gform_wrapper_2 {some code in here...} ??? or do I need to do it one by one?
Thanks in advance!!!
Hi guys,
Is there a way I can customize 2 out of 5 forms I've got on the site using something like this:
body #gform_wrapper_1 #gform_wrapper_2 {some code in here...} ??? or do I need to do it one by one?
Thanks in advance!!!
Yes, since each form has it's own unique ID, you can group styles together with commas or give them unique properties. An example would be:
[css]
body #gform_wrapper_1, body #gform_wrapper_2 {
margin: 10px;
}
or
[css]
body #gform_wrapper_1 {
margin: 10px;
}
body #gform_wrapper_2 {
margin: 30px;
}
Thanks for the quick reply!
I am trying to change the font color for all labels especifically on those 2 forms, this is what I got, but nothing seems to change :(
body #gform_wrapper_11 body #gform_wrapper_12 .gfield_label { color:#4b545b!important; font-size: 24px!important; font-family: 'Cabin', serif!important; font-weight:700!important;}
body #gform_wrapper_11 body #gform_wrapper_12 .gfield_checkbox li label, body .gform_wrapper .gfield_radio li label {font-size: 14px!important; color:#4b545b!important;}
I also have this other code on the stylesheet, and this is what the form looks like instead:
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {color:white; font-size: 18px!important; font-weight: bold; padding:20px 0 1px 0; letter-spacing:0em; margin: 0 0 1px 10px!important;}
Can you please tell me what I'm doing wrong?
Thanks again!
Can you post a link to your form, so I can reference it. But looking about when you put:
[css]
body #gform_wrapper_11 body #gform_wrapper_12 .gfield_label { color:#4b545b!important; font-size: 24px!important; font-family: 'Cabin', serif!important; font-weight:700!important;}
You are close there, but the selector should read like this:
[css]
body #gform_wrapper_11 .gfield_label, body #gform_wrapper_12 .gfield_label { color:#4b545b!important; font-size: 24px!important; font-family: 'Cabin', serif!important; font-weight:700!important;}
The site is in spanish, but sure! there it is: http://www.adondeiremos.com.mx/kleverest/bannersprice/#gf_12
Thanks for your reply, I'm gonna try it out! ;-)
Wow thanks for your help! it did work! :)
Right on, looking good! Glad to help.