PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Move Description Up a Tad ?

  1. SoundsGood
    Member

    Is it possible to move the "Description" line up a bit so it's closer to its associated field?

    If so, HOW? :-)

    Thanks!

    Posted 14 years ago on Thursday July 29, 2010 | Permalink
  2. 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:

    http://www.gravityhelp.com/documentation/visual-css-guide/

    Posted 14 years ago on Friday July 30, 2010 | Permalink
  3. SoundsGood
    Member

    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.

    Posted 14 years ago on Friday July 30, 2010 | Permalink
  4. 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; }

    Posted 14 years ago on Friday July 30, 2010 | Permalink
  5. 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.

    Posted 14 years ago on Friday July 30, 2010 | Permalink
  6. SoundsGood
    Member

    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!

    Posted 14 years ago on Friday July 30, 2010 | Permalink