How to change the width and height of an textarea field in the 'edit entry' form (using the editor)?
How to change the width and height of an textarea field in the 'edit entry' form (using the editor)?
stefan_hietel
Posts: 2Questions: 0Answers: 0
I am using the Editor and I want to Change the height and width of some input-fields in the edit entry form. Thanx for help (-:
"label": "Ueberschrift:",
"name": "ueberschrift",
type: 'textarea',
width: "400"
"label": "Ueberschrift:",
"name": "ueberschrift",
type: 'textarea',
width: "400"
This discussion has been closed.
Replies
[code]
textarea {
width: 400px;
}
[/code]
Allan