How to remove Bold from f.label
As I only sometimes want a non-bold label text, I solved it by using a css class in the label helper:
<%= label :model, :fieldname, class: "not-bold" %>
And in the stylesheet:
.not-bold {font-weight:normal !important;}
I fixed this problem overriding the label
label {
font-weight: normal !important;
}
Thanks to @vucko who gave me help.