I have a form_for in my rails app. I just figured out how to override bootstrap css on input text fields. but I dont know how to override the css on input text area
Okay so this is how I change the natural styling of my text field.
CSS
.product-form input[type="text"] {
height: 26px;
border: 0px ;
}
Haml form_for
%span.product-form
= f.text_field :name, placeholder: "Name"
However this doesn't work on text area = f.text_area :description
Any ideas?