Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

can not adjust cftextarea hieght

Engaged ,
May 26, 2014 May 26, 2014

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>

249
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , May 26, 2014 May 26, 2014

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

Translate
Adobe Employee ,
May 26, 2014 May 26, 2014

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
May 26, 2014 May 26, 2014
LATEST

Thanks a million for the information and help,

Regards,

Iccsi,

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources