Does anyone know how to set the width of the nicEdit editor?
Does anyone know how to set the width of the nicEdit editor?
Define your textarea in your style width:
in the value of 100%
or in pixel the desired value ( 300px
), example:
<textarea name="area" style="width: 100%;">
Some Initial Content was in this textarea
</textarea>
<textarea name="area" style="width: 300px;">
HTML content default in textarea
</textarea>
Reference site: Demo - NicEdit a>