NeoJunkies
01-18-2003, 10:20 PM
Ummm Hi i've seen some peoples could use html on there Text Area's but it wont work for me can you help?!
|
View Full Version : Help!! NeoJunkies 01-18-2003, 10:20 PM Ummm Hi i've seen some peoples could use html on there Text Area's but it wont work for me can you help?! Duddette 01-18-2003, 10:44 PM i know what you mean. it wont work for text areas though. it has to be that ilayer thing. i lost the code for it. Alcy 01-18-2003, 11:19 PM You can use CSS on your textareas. For example: <textarea style="background-color:pink; color:black; font-family:verdana; font-size:12px;"> TEXT HERE </textarea> It also works this way: <style type="text/css"> textarea { background-color:pink; color:black; font-family:verdana; font-size:12px; } </style> You can add/take away more stuff ^_^ Duddette 01-19-2003, 12:53 AM ok cool.. do you know how you would be able to align the text area? like say i wanted it on the right side of the page, how would i go about that? Alcy 01-19-2003, 04:21 AM <textarea style="position:absolute; top:0px; right:0px;"> That'll align it to the top right. If you want to align it to the left, change "right" to "left", or align to the bottom, change "top" to "bottom". |