Foundation, einfache form, einen text, Spalten

Ich habe eine Zurb Foundation einfaches Formular mit einem Feld (:Beschreibung) - text-Bereich. Ich möchte den text-Bereich werden 10 Reihen tief, aber es scheint als 2 Zeilen. Wer weiß, wie dies zu ändern?

<div class="row">
  <div class="large-4 large-centered columns">
    <%= simple_form_for(@venue) do |f| %>
      <fieldset>
        <%= f.input :name %>
        <%= f.input :url %>
        <%= f.input :street %>
        <%= f.input :city %>
        <%= f.input :state %>
        <%= f.input :description, as: :text, :input_html => { :cols => 5, :rows => 10 } %>
        <%= f.submit "Submit", class: "button small radius" %>
      </fieldset>
    <% end %>
  </div>
</div>

InformationsquelleAutor mikeglaz | 2013-07-04

Schreibe einen Kommentar