Copy link to clipboard
Copied
I have following code for my cftextarea and try to make the height and width I need for the form for the users.
For some reason, it does not change the size even I modify row and col parameters.
Is it something I am missing to adjust the height and width of cftextarea?
Your help and information is great appreciated,
Regards,
Iccsi,
<td><CFtextarea name="MytxtArea" id="MyTextArea" row="6" col="10"/></td>
Hi Iccsi,
You can try using style with height and width attribute.
<cfform>
<cftextarea name="broadcastContent" enabled="Yes" toolbar="Basic" visible="Yes" style="height:200px; width:1500px;" skin="silver" richtext="Yes">
This is a textarea.
</cftextarea>
</cfform>
Note: Sometimes the results vary from browser to browser. I have seen best results inIE.
Regards,
Anit kumar
Copy link to clipboard
Copied
Hi Iccsi,
You can try using style with height and width attribute.
<cfform>
<cftextarea name="broadcastContent" enabled="Yes" toolbar="Basic" visible="Yes" style="height:200px; width:1500px;" skin="silver" richtext="Yes">
This is a textarea.
</cftextarea>
</cfform>
Note: Sometimes the results vary from browser to browser. I have seen best results inIE.
Regards,
Anit kumar
Copy link to clipboard
Copied
Thanks a million for the information and help,
Regards,
Iccsi,