Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

?</textarea> 1

Status
Not open for further replies.

juandiegomc

Programmer
Apr 25, 2003
60
US
Hello,

I use this so people can add comments for words or one sentence but I want to have a big text box just like I am using here in tet-tips. Here is my old code:


<TR><TD><B><U><font color=&quot;#0000ff&quot;> english </TD></font><TD><B><font color=&quot;#ff0000&quot;>
<FONT SIZE=2 FACE=&quot;Arial&quot;>Your e-mail:</TD>
<TD>
<textarea name=&quot;croatian&quot;style=&quot;height:30px;width:350px&quot;>
</textarea>
</TD>
</TR>
How can I make the textarea just as big as this.

John
juandiegomcc@afirmacion.com
 
change it to rows and cols instead of pixels like this

Code:
<TR><TD><B><U><font color=&quot;#0000ff&quot;>      english    </TD></font><TD><B><font color=&quot;#ff0000&quot;>
             <FONT SIZE=2 FACE=&quot;Arial&quot;>Your e-mail:</TD> 
       <TD> 
         <textarea name=&quot;croatian&quot;
rows
Code:
=&quot;10&quot;
cols
Code:
=&quot;60&quot;>
Code:
       </textarea>
             </TD> 
     </TR>


that should work ...you can mess around with the size until you get something you like
Jammer1221
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top