0

我有一个安装了 CK Forms 的 Joomla 1.5 站点。一切正常,但验证码上有一个工具提示,无法正确显示。它以 1px 字体大小显示。如果我尝试在 Firebug 中调试元素,则字体设置正确。它有两个属性:

#ckformcontainer .ckform div.error {
  display: none;
  font-size:12px;
}

如果我尝试使用 Firebug 删除 display:none ,那么它会正确显示,但是当使用翻转时,字体非常小。看看这里:

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 中。

4

1 回答 1

1

您需要设置 CSS 规则以强制.tool-tip使用更大的字体大小。这将解决它:

.tool-tip {
    font-size: 14px !important;
}

将其放在您的 CSS 文件之一中。

于 2012-06-11T16:06:46.393 回答