Does anyone know how to put CSS styling on labels in Simple Form with Rails Bootstrap (SCSS)?
I have this line in my form. I can't find a way to style the label.
I have a css div class defined as 'question-project', but I can't find a way to get the form to pick it up.
<%= f.input :project_title, label: 'Project Title', placeholder: 'A catchy, relevant title for your project', :input_html => {:style=> 'width: 650px', class: 'response-project'} %>
If I put a div tag around the entire <%= %> then it overrides the styling inside the field.
Thank you