i have an input date in my form:
<%= simple_form_for @user, url:wizard_path, html: {class: 'form-horizontal'}, wrapper: :horizontal_input_group do |f| %>
<%= f.simple_fields_for :educations do |b| %>
<%= b.input :school_name %>
<%= b.input :degree %>
<%= b.input :year_started %>
<%= b.input :year_finished %>
<% end %>
<%= f.button :submit, "Continue" %>
or<%= link_to " Skip this step", next_wizard_path%>
<% end %>
My problem is that the day month and year inputs are not in the same line and it looks ugly (ie it shows 3 lines, one input per line). I thought that the default behaviour of simple_form will show the date input in the same line, but mine is not. Is this normal in simple_form? (for date input specifically) or do I need to do some configurations via css? Please help me :(
RELEVANT MODELS:
User model:
has_many :educations, dependent: :destroy
accepts_nested_attributes_for :educations
Education model:
belongs_to :user