I need to customize my sidebar gravity form. I can't get the drop downs and check boxes to be side by side.
http://atlantahomessearcher.com
this is a screenshot of the desired look. http://atlantahomessearcher.com/id-1.png
I need to customize my sidebar gravity form. I can't get the drop downs and check boxes to be side by side.
http://atlantahomessearcher.com
this is a screenshot of the desired look. http://atlantahomessearcher.com/id-1.png
Hey there, see if our ready classes helps you out here:
http://www.gravityhelp.com/documentation/page/CSS_Ready_Classes
Rob thanks. Worked perfectly except for i need to move / align submit button to the right?
I didn't see any ready classes info on that? I tried gf_align_right just guessing. didn't work
No problem, try dropping this into your theme's stylesheet:
[css]
.gform_widget .gform_footer {
text-align: right;
}
Thanks Rob again. Wonderful. I'm getting a padded frame around my custom submit button from Gravity.
What can i do to remove that? http://atlantahomessearcher.com
In your theme's CSS you have:
[css]
input, textarea {
font-size: 1em;
color: #444;
background: #EEE;
border: 1px solid #AAA;
border-right-color: #DDD;
border-bottom-color: #DDD;
}
This is affecting all types of inputs since they are just general, vague selectors. Try dropping this in to override those:
[css]
.gform_widget .gform_image_button {
background: none;
border: 0;
}
Thanks very much.
Glad to help out!