Forum Moderators: open

Message Too Old, No Replies

Can I format a text area or text field in a form?

         

Meryl_Smith

12:21 am on Aug 22, 2002 (gmt 0)

10+ Year Member



I am creating a page where I need to emphasize, with color and font, the text in a text field. Does anyone have a technique to do this?

Thanks!
Meryl Smith

Knowles

12:35 am on Aug 22, 2002 (gmt 0)

10+ Year Member



With CSS you should be able too.

This is the CSS code:


.textarea {
font-family : serif;
color : Aqua;
}

Then your text area *should* display that faimly and color... this is untested.

Meryl_Smith

2:04 am on Aug 22, 2002 (gmt 0)

10+ Year Member



Thanks! Worked great.