Jump to content

textarea color


DeathStar

Recommended Posts

I want  to make a text box be grayish.
normaly its white is there any way todo it?

in header.php this is it for text color
[code]textarea { font-family:helvetica, arial, geneva, sans-serif;font-size:12;color: #000000; }[/code]
But the text box bgcolor  is it something with style=.... ?
or what?
Link to comment
https://forums.phpfreaks.com/topic/30020-textarea-color/
Share on other sites

Just add the background-color to the style:

textarea { font-family:helvetica, arial, geneva, sans-serif;font-size:12;color: #000000;background-color:#e1e1e1; }

that will give the textarea a very light grey background.

Also this is a HTML/CSS issue so I am moving this to the CSS forum.
Link to comment
https://forums.phpfreaks.com/topic/30020-textarea-color/#findComment-138012
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.