In many of my projects I use simple_form and love it. However one really strange quirk that I find is that I get 3 small dots underneath the * it supplies for required fields.

I have to get around it with:

= f.input :name, :label => '*', :required => false # Display purpose only (it is required)

which is messy because the field is required, so this code looks ugly.

Is there a better fix for what seems like a common problem?

link|improve this question

feedback

2 Answers

It seems like CSS stuff. See what are the properties for abbr tags on your CSS.

link|improve this answer
I doubt it as I have seen this on multiple projects and pc's. – Michael Durrant Jul 28 '11 at 3:22
I never see this behavior before. Could you provide a code example? – rafaelfranca Jul 28 '11 at 14:06
The code is just that it uses simple_form and the line above. However I also see this in apps that even other people in other orgs create so I do not believe it is specific to my code and looking at my code will be a distraction. I appreciate best guesses but in this example I'm hoping that someone else who has actually experienced this will be able to shed some light for us. – Michael Durrant Jul 31 '11 at 18:44
I create one application from scratch with rails 3.0 and simple_form and I don't see any dots under the *. What browser are you using? – rafaelfranca Aug 9 '11 at 0:59
Multiple browser, multiple platforms. code is <form accept-charset="UTF-8" action="/gorilla_groups" class="simple_form gorilla_group" id="new_gorilla_group" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="1KUd9OIZx/mEhBSz++8AAfIyoj3Mfqiklr4GNAQVCv8=" /></div> <div class='field'> – Michael Durrant Aug 11 '11 at 11:34
show 3 more comments
feedback

I think it's from CSS, if you are useing blueprint, "abbr and accronym" tags have a border-bottom: 1px dotted black style.

Wish helps :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.