我安装了CK Forms的Joomla 1.5网站。一切正常,但验证码上有一个工具提示,无法正确显示。它以1px字体大小显示。如果我尝试在Firebug中调试元素,则正确设置字体。它有两个属性:
#ckformcontainer .ckform div.error {
display: none;
font-size:12px;
}
如果我尝试删除display:none使用Firebug,那么它会正确显示,但是当使用翻转时,字体非常小。看看这里:
https://www.autismworks.co.uk/expressionofinterest
滚动到底部,查找验证码附近的“i”。
到目前为止,我已经知道1px字体大小实际上是来自body元素,尽管被其他样式覆盖了?!
元素是:
<div id="errorck_captcha_code" class="error"> Please try to enter the captcha again, the code was not accepted this time. </div>
我在Windows 7上使用Firefox 9.0.1(将升级到测试版),但这似乎也发生在IE中。
答案 0 :(得分:1)
您需要设置CSS规则以强制.tool-tip
更大的字体大小。这将解决它:
.tool-tip {
font-size: 14px !important;
}
将其放在您的一个CSS文件中。