View Full Version : Email Form font change?


Megumi
05-23-2006, 11:52 PM
Okay, this is just killing me.

I want to use the feedback form on this page: http://www.englib.cornell.edu/instruction/www/email-forms-class.html#Simple.

But I also want the change the font that appears in the boxes so that it won't be that icky Times New Roman. What code could I use to do that, or is it not possible with that form?

jessimo093
05-24-2006, 01:34 AM
I'm not sure if this will work, but you can always try adding <style="font-family:NAME;"> before the text. Hope it works and good luck!

Shirl
05-24-2006, 02:02 AM
http://www.lissaexplains.com/forum/archive/index.php/t-150.html

I did a search on the site and i found that thread...in the email form code there she has a font code before the form. Maybe you can try that.

Megumi
05-24-2006, 04:37 AM
Well, I tried both methods, and the text still stays the same. :tired:

pb&j
05-24-2006, 07:00 AM
try adding some style.
example...
<INPUT TYPE="text" NAME="from_address" style="font-family:Comic Sans;">

maco
05-24-2006, 07:23 PM
or in your stylesheet put

input {font-family:"Comio Sans",arial,sans-serif;}

Since you don't have a stylesheet in there...
<HEAD>

<TITLE>HTML Forms for Feedback</TITLE>

</HEAD> is the top of your page. Make it say:
<HEAD>

<TITLE>HTML Forms for Feedback</TITLE>

<style type="text/css">input {font-family:"Comio Sans",arial,sans-serif;}</style>

</HEAD>