We would like to change the "Receive Our Newsletter" form to have all the components (3 forms, 2 check box inputs and the search) be on the same line. Is this possible?
Thanks!
We would like to change the "Receive Our Newsletter" form to have all the components (3 forms, 2 check box inputs and the search) be on the same line. Is this possible?
Thanks!
No problem, for the form fields, check out our ready classes for easy use:
http://www.gravityhelp.com/documentation/page/CSS_Ready_Classes
The submit button will take some custom CSS, but let me know once you've gotten to that point and I can help you out with that.
Got it! Thanks! Only thing left is the button :)
So, this should get you close, and you'll want to place this CSS into your theme's stylesheet. If nothing else you'll have the appropriate selector:
[css]
#gform_wrapper_2 .gform_footer {
float: right;
margin: -50px 0 0 0;
}
We're saying to only target the footer in the form with the ID of 2, because not all of your forms will need to have the submit button this way. So you can isolate your styles.
The float function works but the margin isn't working. Any ideas?
Looks like you didn't copy the selector correctly: Screenshot
Did you see my explanation about the #gofmr_wrapper_2 piece of the selector?
Oops! My bad.
Everything is good now :) Just added a little padding and everything looks good!
Thanks a bunch!
Awesome. Look at that beauty. Glad to help!