Set width for nicEdit editor

2

Does anyone know how to set the width of the nicEdit editor?

    
asked by anonymous 20.08.2014 / 16:31

1 answer

1

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>

    
20.08.2014 / 18:06