Guys, how can I remove the margin of the field validation email? I would like the red edge of the input, without margin. Thanks
You can see the newsletter box on the sidebar http://www.lacaita.com/
Guys, how can I remove the margin of the field validation email? I would like the red edge of the input, without margin. Thanks
You can see the newsletter box on the sidebar http://www.lacaita.com/
just target the container properly with your CSS rules to apply whatever properties you need.
[css]
body #gform_wrapper_2 .gform_body .gform_fields .gfield_error {
margin: 0!important;
}
You can find more CSS samples here that might help.
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples
margin: 0!important;
result: it's very important!
Great, Thanks Kevin!
You're very welcome. Glad that helped out.