I recently upgraded simpleform and bootstrap, which I'm using together. My required fields now have ellipses underneath the asterisks, and when users hover, they get a tooltip.
How can I customize or remove that behavior?
I recently upgraded simpleform and bootstrap, which I'm using together. My required fields now have ellipses underneath the asterisks, and when users hover, they get a tooltip.
How can I customize or remove that behavior?
If you just hide the abbr you lose the information about the field being required. What you need to do is style the abbr correctly, for example to get rid of the ellipsis do:
/** CUSTOMIZE SIMPLEFORM SHITTY STYLINGS **/
abbr[title='required'] {
border-bottom: none;
}