Hello,
As can be seen on this dev page: http://tinyurl.com/7ck6vpy the name and email don't fit on the top line using gf_left_half and gf_right_half. How do I go about fixing this?
thanks.
Hello,
As can be seen on this dev page: http://tinyurl.com/7ck6vpy the name and email don't fit on the top line using gf_left_half and gf_right_half. How do I go about fixing this?
thanks.
You could change the field width using CSS.
li.gfield.gf_left_half input.medium, li.gfield.gf_right_half input.medium {
width: 47% !important;
}
Let me know if that helps.
Or something similar to the
.gform_wrapper .top_label li.gfield.gf_right_half
Thanks for your quick response David! Unfortunately your first method with the CSS didn't work. I did play around with it a bit before I posted here and couldn't find a solution either.
'Or something similar to the
.gform_wrapper .top_label li.gfield.gf_right_half'
Not sure what you're talking about, :D.
Thanks.
Sorry, for my second post, I meant try the same CSS to the .gform_wrapper .top_label li.gfield.gf_right_half... the
width: 47% !important;
Try dropping this into your theme's stylesheet:
[css]
#content .gform_wrapper .gform_body li.gfield {
margin: 0;
}
The issue is this margin in your theme's stylesheet:
[css]
#content .post ul li, #content .page ul li, .catalyst-widget-area ul li {
margin: 0 0 0 20px;
list-style-type: disc;
#content .post ul li, #content .page ul li, #content .post ol li, #content .page ol li, .catalyst-widget-area ul li, .catalyst-widget-area ol li {
margin: 0 0 0 20px;
padding: 0 0 0px;
}
}
Perfect, thanks.
Glad to help.