The image you use needs to be transparent like Hippie said. Text can not be seen well with a image like that.
- Code: Select all
textarea {
color: #33A0FF;
background-color: #111111;
border: 1px solid #CCCCCC;
font-family: Verdana, "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif;
font-size: 1.3em;
line-height: 1.4em;
font-weight: normal;
padding: 2px;
}
input:hover, textarea:hover, select:hover {
color: #22DDDD;
background-color: #232323;
border: solid 1px #33A0FF;
}
input:focus, textarea:focus, select:focus {
color: #33A0FF;
background-color: #111111;
border: solid 1px #22DDDD;
}
As you can see in your stylesheet that your .textarea class has a textarea:hover and a texarea:focus class effects.
Put your image in the .textarea class. Follow the directions on the first post of this topic.