There is no CSS file for the email notification. If you are referring to the {all_fields} token output, styles are inline You have complete control over the notification email message body, it isn't pre-configured. You don't have to use {all_fields} you can do whatever you want.
Once you redirect to a Thank You page Gravity Forms is no longer in control, so any CSS is associated with that Thank You page.
If you are referring to the built in Thank You message when using confirmation text (and not the confirmation redirect functionality) you can style this message using CSS you add to your theme stylesheet.
You would target the #gforms_confirmation_message element.
Example:
#gforms_confirmation_message {background-color: #000000!important;color: #ffffff!important;
That example would set the background color of the confirmation message to black and the foreground color to white. This CSS would go in your themes stylesheet.
You would style Gravity Forms just like you would style anything in your theme. View source, inspect the HTML, see what classes and id's are using and then use CSS to target and style those classes and id's. It's standard HTML and CSS.
Posted 14 years ago on Monday January 10, 2011 |
Permalink