Hi everybody,
I have a new question today
In the backend form for an item, i use a textarea field without editor.
(Joomla!3.3.6 - FC version 2.2.0 r1974).
I tried a lot of thing, search on Google and the site, but i don't find out how to change the width of the textarea...
If i put "650 px" in widht of the textarea, i have a div of 650px, but no change on the form, like this :
Code:
<div id="container_fcfield_26" class="fcfield_row1 container_fcfield container_fcfield_id_26 container_fcfield_name_generalpresentation" style="width:650px;">
<textarea id="custom_generalpresentation_0" class="" rows="10" cols="75" name="custom[generalpresentation]" aria-invalid="false">My text here</textarea>
</div>
How to change the width of the textarea in the backend form ?
I can see a empty class for the field : how to add a specific class to the field (i didn't found where to specify a class for a field...) or how to add
Code:
<textarea id="custom_generalpresentation_0" style="width:650px; class="" rows="10" cols="75" name="custom[generalpresentation]" aria-invalid="false">
if i cannot change the class for this specific field ?
Thanks