View Single Post
Old March 20th, 2003, 12:32 AM     #3 (permalink)
baron
Member
 
baron's Avatar
 
Join Date: Feb 2003
Location: MI
Posts: 56
Send a message via ICQ to baron Send a message via AIM to baron Send a message via Yahoo to baron
Yes, the class= is a call to a font class declared in a css file, either linked or inline. You can declare font classes in the head of your page using:

<style type="text/css">
INPUT {FONT-FAMILY: geneva,arial,Verdana,Helvetica; FONT-SIZE: 10px; COLOR: #000000}
</style>

You can also define different classes that allow different fonts and styles for your input boxes by using
.classname {FONT-FAMILY: geneva,arial,Verdana,Helvetica; FONT-SIZE: 10px; COLOR: #000000}
in your style.

Hope that makes sense...

Baron
baron is offline   Reply With Quote