Cufon 鼠标悬停不工作

发布于 2024-11-28 12:10:05 字数 236 浏览 3 评论 0原文

这可能是一个 CSS 错误,但我一生都无法弄清楚。当我将鼠标悬停在菜单选项“书籍”上时,Cufon 替换应将文本颜色更改为白色,将背景更改为绿色,背景颜色正在更改,但文本颜色没有更改。

查看 http://www.urlgone.com/340aa1/ 上类别下的菜单左侧。

有人可以告诉我我做错了什么吗?

This may be a css error but I can't figure it out for the life of me. When I mouseover the menu option "books" the Cufon replacement should change the text color to white and the background to green the background color is changing but the text color is not.

Take a look http://www.urlgone.com/340aa1/ at the menu under categories on the left side.

Can someone please tell me what I'm doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

智商已欠费 2024-12-05 12:10:05

这是 CSS 的问题。在 CSS 中,您有:

ul.dropdown a:hover { 
  color: #2a2a2a;
  text-decoration: underline;
}

将其更改为:

ul.dropdown a:hover { 
  color: #fff;
  text-decoration: underline;
}

编辑。

它位于此文件中: http://cs.solesu.com/skins/solesu_basic/客户/dropdown.css

It's a problem with CSS. In CSS you have:

ul.dropdown a:hover { 
  color: #2a2a2a;
  text-decoration: underline;
}

Change this to:

ul.dropdown a:hover { 
  color: #fff;
  text-decoration: underline;
}

Edit.

It's in this file: http://cs.solesu.com/skins/solesu_basic/customer/dropdown.css

迷爱 2024-12-05 12:10:05

你必须在cufon替换代码中启用hover:true。

you have to enable hover:true in cufon replacement code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文