Hi. I am almost certain Chronoform (then I will purchase it) can be used for what I need. I am just trying to figure out the last part. I have a two page form for a job application. I've got it emailing properly and otherwise working.
I wanted to be able to print the application so the applicant can sign the form.
Using @import - I am styling away the footer, menu items, etc... NO PROBLEM. Totally workable and what I had in mind. However, here is my question.
_
How do I style the form itself to fit the page? I have tried styling the form itself (my div called 'applicationform' and this doesn't budge the form. It is centered with margins of about 100px on the sides and top. I tried styling the Chronocontact [myform name] div and that does nothing. Could you provide some insight?
-
Below is my code:
I am using the following on a button to print - but it can also be printer the same from the browser window.
I have this code within the HTML Code box where the form actually is.
Thanks,
- David
I wanted to be able to print the application so the applicant can sign the form.
Using @import - I am styling away the footer, menu items, etc... NO PROBLEM. Totally workable and what I had in mind. However, here is my question.
_
How do I style the form itself to fit the page? I have tried styling the form itself (my div called 'applicationform' and this doesn't budge the form. It is centered with margins of about 100px on the sides and top. I tried styling the Chronocontact [myform name] div and that does nothing. Could you provide some insight?
-
Below is my code:
<STYLE type="text/css">
@media print {
#footer {display: none;}
#header {display: none;}
.breadcrumbs {display: none;}
#sidebar {display: none;}
.moduletable_menu {display: none;}
.moduletable {display: none;}
form { border: none; font: strong; vertical-align: bottom; padding-left: 3px; font-weight: bold;}
input{ border: none; font: strong; vertical-align: bottom; padding-left: 3px; font-weight: bold;}
}
</STYLE>
I am using the following on a button to print - but it can also be printer the same from the browser window.
<INPUT TYPE="button" onClick="window.print()">
I have this code within the HTML Code box where the form actually is.
Thanks,
- David