I'm using form tag helper in this way
f.label :something, "label"
f.select :something, options_for_select(...), etc.
But that generate something like this in html
label ....
What I need is that the form tag help prints without the break line
<label></label><select...
because I need that label select have display:inline-block and that creat inblock spacing gap...
I tried manually creating the label (I'm using haml) where the '>' fix the problem, but I don't know how to create the :for value.
%label{ :for => :something (??)}>
update
I didn't consider haml as a way to solved my problem, but it looks like in this case may work like this:
f.label :something, "label"
.divwrapper>
f.select :something, options_for_select(...), etc.
this is a haml hack, I can style the .divwrapper including, keep the form rails form tag helps and with the ">" remove the whitespace around, but still bugging me that Ican't find a way to tell the rails helpers to remove the white space in case that I don't want to use haml for example