View Full Version : text box with scrollbar help


tkdgurl927
03-07-2004, 02:25 AM
can anyone help me with the codes for this textbox like this (just clik enter)http://www.horsefreaks9977.cjb.net/ i want the little textbox with the scrollbar, only i want it bigger so i can type things in for my site...does ne1 kno the code? thanks!
p.s. this is not my site or anyones i know, i just found it.

kicker91
03-07-2004, 02:33 AM
<textarea cols="40" rows="6" style="background:#000000; font-family:verdana; color:#FFFFFF; border:1px #FFFFFF solid;"></textarea>

weird girl
03-07-2004, 02:34 AM
Css :D
<STYLE type="text/css">
BODY {
scrollbar-face-color:#990000;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color:#000000;
scrollbar-darkshadow-color:#990000;
scrollbar-shadow-color:#000000;
scrollbar-arrow-color:#000000;
scrollbar-track-color:#000000;
}
textarea
{
background-color:#000000;
font-family:verdana;
color:#990000;
border-style:solid;
border-color:#990000; }
</STYLE>

And then you'd just need to do this for the textarea:

<form ACTION=URI><textarea rows="5" cols="20" >Put your text here</textarea></form>

Changining the stuff in orange and the "put your text here" bit.