I've got a Joomla 1.5 site with CK Forms installed. It all works fine but there is a tooltip on the captcha which won't display right. It displays in 1px font size. If I try to debug the element in Firebug then the font is set correctly. It has two properties:
#ckformcontainer .ckform div.error {
display: none;
font-size:12px;
}
If I try to remove the display:none using Firebug then it displays correctly, but when using the rollover the font is really small. Have a look here:
https://www.autismworks.co.uk/expressionofinterest
Scroll to the bottom and look for the 'i' near the captcha.
So far I've worked out that the 1px font size is actually coming from the body element despite being overwritten by other styles?!
The element is:
<div id="errorck_captcha_code" class="error"> Please try to enter the captcha again, the code was not accepted this time. </div>
I'm using Firefox 9.0.1 (will upgrade to test) on Windows 7 but this seems to happen in IE as well.