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_hietelstefan_hietel Posts: 2Questions: 0Answers: 0
edited April 2013 in General
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"

Replies

  • allanallan Posts: 63,516Questions: 1Answers: 10,472 Site admin
    Your just use a bit of CSS:

    [code]
    textarea {
    width: 400px;
    }
    [/code]

    Allan
  • stefan_hietelstefan_hietel Posts: 2Questions: 0Answers: 0
    Works, thank you (-:
This discussion has been closed.