vveare138
vveare138

Reputation: 347

How change width forms with twitter-bootstrap

I want a change width form width bootstrap.But when I added

class: "input-xlarge"

in form helper

= f.text_field :title, class: "input-xlarge", placeholder: "Title"
<input type="text" placeholder="Заголовок" name="post[title]" id="post_title" class="input-xlarge">

width don't changed

how fix?

Upvotes: 0

Views: 32

Answers (1)

Duvdevan
Duvdevan

Reputation: 158

Bootstrap 3.* dropped the input-x* classes for sizing, so use something like this:

<input type="text" class="form-control col-md-5" />

Or for a full width version use just this:

<input type="text" class="form-control" />

You can also refer to: Bootstrap — CSS — Forms — Control Sizing

Upvotes: 1

Related Questions