Hey everyone, this is a long overdue tutorial as part of what I originally planned as a series of tutorials. My apologies and I can’t promise any urgency on anything else, but here it is.
I previously wrote a tutorial on adding tooltips to Formidable Pro form fields. Redoing it is pretty easy really. Go to https://github.com/chinchang/hint.css and download the Full Build “minified” css to generate the tooltips. Upload the onto your server somewhere that you can reference it.
Customizing the HTML and applying tooltips to your fields
To the “Before Fields” text area at the top in the “Customize HTML” section of the form settings above everything else. Then just add the appropriate class to each input object for each field like so:
Notes:
Depending on the theme you are using you may have to do some additional CSS changes/modifications per form for it to look nice.
I had to add a CSS override to the before fields section to make it so that the tooltips CSS doesn’t overwrite the formidable css input box widths. The example below includes my original examples hint library style link:
For horizontally aligned radios and checkbox, you’ll need to add the following. Note: Checkbox fields use the “horizontal radio” class.
.horizontal_radio .frm_opt_container {
float: left !important;
margin-right: 12px;
}
This doesn’t work with CSS layout classes that you can define when building the form, nor is it responsive. I plan to provide a workaround at some point in the future.