Is it possible to move the "Description" line up a bit so it's closer to its associated field?
If so, HOW? :-)
Thanks!
Is it possible to move the "Description" line up a bit so it's closer to its associated field?
If so, HOW? :-)
Thanks!
You would have to use some custom CSS you add to your themes stylesheet to adjust the styling of the description. You would need to know some CSS to do this or hire a consultant who could do the customizations for you.
Our CSS style guide is here:
I think I found what needs to be changed:
.gform_wrapper .gfield_description {
font-style:italic;
padding:10px 0 8px;
}
Looks like padding 10px needs to change to 1px
But how do I make this change? Putting it in my css file doesn't seem to do the trick.
If you want to change them all, you can adjust the top padding for all the description fields this way.. just append this to the end of your THEME style sheet.
.gform_wrapper .gfield_description {padding:4px 0 8px 0; }
If you want to change just one field, view the page source and get the field id, then do something like this - of course, changing the example id (#field_1_2) to the one in your form
li#field_1_2 .gfield_description {padding:4px 0 8px 0; }
As Kevin said above, add these styles to your THEME stylesheet... never edit the Gravity Forms forms.css file directly as plugin upgrades will overwrite your changes.
Kevin's info is what I was looking for (to change them all) but for some reason it's not working.
I'll play with it a bit and see what happens.
Thanks Kevin!