Im having some issues getting my form to fit onto the page right. Ive found some scripts for making the outside border narrower- but the input fields are still at their original width?
Hello, if you could provide us with a link or image showing the issue, we will be able to give you better advice. Have you tried setting the size option in the Form Builder?
Hello, you can accomplish all of your requests by using CSS styling in your custom code block. http://app.formassembly.com/pages/support/customization
In this case, you'll want to customize your submit button which has the CSS selector: #submit- { CSS_RULES } you can find ideas here: http://www.456bereastreet.com/lab/styling-form-controls-revisited/submit-button/
Where do I find the code to put into the custom code block to center the submit button, and decrease the width of the input box? There doesnt seem to be any code regarding that there?
To center the alignment of the submit button use: .actions{ text-align: center; }
for the width of the input boxes: input{ width: 20%; }
I'm not quite sure what you mean by the css selector rules. Are you referring to syntax such as is described here: http://www.eskimo.com/~bloo/indexdot/css/syntax/selectors/selectors.htm ?
Could you provide an example of #submit- { CSS_RULES } in the custom code block? Thanks!
<blockquote><cite>Posted By: dbuschho</cite>Hello, you can accomplish all of your requests by using CSS styling in your custom code block. http://app.formassembly.com/pages/support/customization
In this case, you'll want to customize your submit button which has the CSS selector: #submit- { CSS_RULES } you can find ideas here: http://www.456bereastreet.com/lab/styling-form-controls-revisited/submit-button/