I'm stylizing a webpage developed on Rails.
So, I have a form with the checkbox of password remember. The problem Is it is always on bold and I can't change it. I've changed successfully the font-style, to italic, the color, but I couldn't remove the bold that was set as default (I guess).
Below my code:
<% if devise_mapping.rememberable? -%>
<div class="remember_forgot_top remember_me_position"><%= f.check_box :remember_me %> <%= f.label :remember_me %></div>
<% end -%>
Someone knows how to remove the bold and how to stylize the label?
PS: I'm using twitter bootstrap.