IMALoser
04-20-2003, 10:19 AM
I saw somewhere that you can change the background color of the text field or posibly add a background image on it? However can you do that? I want it to to have a dashed style and black background, how is this possible?
Thanks advance.
Spirit892
04-20-2003, 02:19 PM
That is css see this from lissa's site
input, textarea
{ background: #000000 url(yourimage.gif);
font-family: tahoma,arial,verdana;
color: #000000;
border-style: value [dotted, dashed, solid, double, groove, ridge, inset, outset];
border-color: #000000;
border-width: valuepx [numerical value, 5, 6, 8...] }
-->
</style>
input, text area: these are the attributes for forms.
background: this would be the background image and color of your text area.
font-family: this is the type of your font in text areas.
color: this is the color of your font in text areas.
border-style: this is obviously the style of your text area borders.
border-color: this is the color of your text area borders.
border-width: this is the width of your text area borders
Get it? Try this (http://www.lissaexplains.com/cssforms.html) url, to see if that what was you wanted....
Good Luck!
IMALoser
04-21-2003, 12:53 AM
Wow, I didn't see that. Well thank you very much. Problem solved!