what if you test the new v7, same issue ?
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
Hi Max,
yes, same issue - and same solution. BUT! I just made a little deeper investigation. The issue is produced by the icon font being used - might however concern others too. I am using the Ultimate pack of IcoMoon
https://icomoon.io/preview-ultimate.html
In the ultimate.css this CSS rule evokes the error:
.icon {
font-family: 'ultimate' !important;
}
In HTML it also uses
<i class="icon" ...
as in Semantic UI
<i class="icon calendar" ...
Probably my workaround with the custom CSS in the form is the best solution here (?).
since both icons css use the same class then there will be a conflict for sure, your fix should be ok!
maybe try this:
.ui.form i.icon{
font-family:Icons;
}
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?
Thank you for your suggestion, perfect now!