How can i justify text on section break ?
How can i center my form in my page ?
How can i put a file (link) that my client can download ?
Thanks
How can i justify text on section break ?
How can i center my form in my page ?
How can i put a file (link) that my client can download ?
Thanks
Do you have a link to your form by chance for questions 1 and 2. For question 3 you can use an HTML field which will accept HTML for you to place a link for a download. Or you could put that HTML on the confirmation text and/or in your email confirmation. Not sure what your use-case here.
sorry is not online for the moment.
Here is a guide to our HTML structure and CSS:
http://www.gravityhelp.com/documentation/page/Design_and_Layout
The centering of your form will most likely need to be done at the theme level. Section breaks can be targeted globally, or independently as each field has it's own ID. You can also add classes if you wish via the form builder.
i find for justify the section break.
For center no i try
body .gform_wrapper {
align:center
}
but doesn't work
and for download files no .
We'll need to see your form online before we can help you with the actual CSS for your specific form.
To center the text in a section break:
[css]
body .gform_wrapper h2.gsection_title {
text-align:center;
}
To center the form fields:
http://www.gravityhelp.com/forums/topic/how-do-i-center-the-entire-form#post-68147
To center only the form wrapper in your page:
[css]
body .gform_wrapper {
margin: 0 auto!important;
}
To put a download link in your confirmation message to your visitor:
[html]
<a href="http://example.com/wp-content/uploads/file.doc">Download your file here</a>