View Full Version : Text field bg color...


Cody-c1
06-13-2003, 12:57 PM
Anyone know how to change the bg color of text fields? and change the color of the text that goes in them?

amicus
06-13-2003, 01:24 PM
input {
background-color: #777777;
color: #FFFFFF;
}

Cody-c1
06-13-2003, 02:33 PM
...ok. what tages does that go in? and where does it go? like in the body, the head? what?

lefty
06-13-2003, 02:36 PM
That would go into your css, which belong in the <head> tag. So it may look something like this:

<HEAD>
<style type="text/css">
<!--
input {
background-color: #777777;
color: #FFFFFF; }
-->
</style>

or add it to your current CSS codes.

by the way, you can't have images in your signature.