Textarea size problem (v10.0.1)

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
playstorm
User
Posts: 27

Textarea size problem (v10.0.1)

Post 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.


Webmaster
User
Posts: 9430

Post 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
}


Post Reply