View previous topic :: View next topic |
Author |
Message |
eckersen
Joined: 06 Aug 2010 Posts: 2 Location: Jacksonville, FL
|
Posted: Tue Aug 10, 2010 5:17 am Post subject: Code Substitution |
|
|
User Name: eckersen
Name of Form: Website Posting Form For Program Information
http://jplstaff.coj.net/forms/web_posting_form.html
_______________________________________
Have I caused myself any trouble by substituting code?
Original Code:
<td style="border-bottom: 2px solid #D8D8D8;"><font color="#000000" size="2" face="Arial"><input name="q[8]" type="text" value="" size="50" maxlength="" style="font-family: Arial; font-size: 14px; font-weight: normal; color: #000000; background-color: #FFFFFF; border: 1px solid #3399cc; vertical-align: middle; padding-left: 4px;" /></font></td>
New Code:
<td style="border-bottom: 2px solid #D8D8D8;"><font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font>
<textarea name="q[8]" type="text" value="" size="50" maxlength="" rows="5" cols="50"style="font-family: Arial; font-size: 14px; font-weight: normal; color: #000000; background-color: #FFFFFF; border: 1px solid #3399cc; vertical-align: middle; padding-left: 4px;" />
</textarea>
</td>
Thank you for your advice.[url][/url] |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Tue Aug 10, 2010 7:44 am Post subject: Re: Code Substitution |
|
|
eckersen wrote: |
User Name: eckersen
Name of Form: Website Posting Form For Program Information
http://jplstaff.coj.net/forms/web_posting_form.html
_______________________________________
Have I caused myself any trouble by substituting code?
Original Code:
<td style="border-bottom: 2px solid #D8D8D8;"><font color="#000000" size="2" face="Arial"><input name="q[8]" type="text" value="" size="50" maxlength="" style="font-family: Arial; font-size: 14px; font-weight: normal; color: #000000; background-color: #FFFFFF; border: 1px solid #3399cc; vertical-align: middle; padding-left: 4px;" /></font></td>
New Code:
<td style="border-bottom: 2px solid #D8D8D8;"><font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font>
<textarea name="q[8]" type="text" value="" size="50" maxlength="" rows="5" cols="50"style="font-family: Arial; font-size: 14px; font-weight: normal; color: #000000; background-color: #FFFFFF; border: 1px solid #3399cc; vertical-align: middle; padding-left: 4px;" />
</textarea>
</td>
Thank you for your advice.[url][/url] |
This should work, although you should test it before going live. Keep in mind also that your code has a lot of extra stuff that isn't doing anything....basically this entire chunk:
Code: |
<font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font><font color="#000000" size="2" face="Arial"></font> |
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
eckersen
Joined: 06 Aug 2010 Posts: 2 Location: Jacksonville, FL
|
Posted: Tue Aug 10, 2010 8:55 am Post subject: Code Substitution |
|
|
So in other words, it was ok for me to substitute and place that scrollable text box code in and the only thing I was missing was the appearance (fonts, etc.) code?
Thanks for your help... |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Thu Aug 12, 2010 9:09 am Post subject: Re: Code Substitution |
|
|
eckersen wrote: |
So in other words, it was ok for me to substitute and place that scrollable text box code in and the only thing I was missing was the appearance (fonts, etc.) code?
Thanks for your help... |
Yes, it is fine so long as you don't change the name= parameter. The code I pointed out to you can be removed as it essentially is not doing anything.
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|