I have searched the forum and found that many people have had an issue with IE9 not showing the validation tooltip background. See attached image for an example.
After reviewing the developer tools for errors, i have found that IE9 interprets the background URL uniquely.
Part of the CSS for the pop up bubble from components/com_chronoforms/css/formcheck/theme/white/formcheck/formcheck.css is:
IE8 and all other browsers display this as:
But IE9 displays this as:
I am not sure why this happens or how to fix it. I have seen others force the page to load in IE8, and while this is a temp fix that will work, i would prefer a permanent solution.
To see this in action, check your sites in IE9, or view my current development site while it is unlocked, goo.gl/LfxQf.
Thanx in advance...
After reviewing the developer tools for errors, i have found that IE9 interprets the background URL uniquely.
Part of the CSS for the pop up bubble from components/com_chronoforms/css/formcheck/theme/white/formcheck/formcheck.css is:
.fc-tbx .tl{background:url('img/tl.png') no-repeat}
IE8 and all other browsers display this as:
.fc-tbx .tl {background: url("img/tl.png") no-repeat scroll 0 0 transparent}
But IE9 displays this as:
.fc-tbx .tl {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, src='http://www.xxx.com/components/com_chronoforms/css/formcheck/theme/white/url("img/tl.png")', sizingMethod='crop')}
I am not sure why this happens or how to fix it. I have seen others force the page to load in IE8, and while this is a temp fix that will work, i would prefer a permanent solution.
To see this in action, check your sites in IE9, or view my current development site while it is unlocked, goo.gl/LfxQf.
Thanx in advance...