Page 1 of 1

Textarea size problem (v10.0.1)

Posted: Fri Aug 16, 2013 9:18 am
by playstorm

Before update to 10.0.1 my textarea size looks normal but after I update to 10.0.1 all textarea width too narrow and height so long it's happen all page.
How can I fix this?

Thanks.


Re: Textarea size problem (v10.0.1)

Posted: Fri Aug 16, 2013 9:41 am
by Webmaster

Bootstrap uses fixed textarea width, since most users want to control the width by cols setting as in previous versions, the width of textarea is reset to auto in CSS. You can either adjust the width by cols setting in Edit tag panel, or you can add CSS to your project, e.g. original Bootstrap 2.3.2 uses:

input,
textarea,
.uneditable-input {
width: 206px; // plus 12px padding and 2px border
}