CSS 修复菜单鼠标悬停问题
在此页面上,有一个菜单,其中“life”下有一个自动生成的子菜单。子菜单存在一些问题(它会闪烁并改变大小 - 如果您滚动它,您就会看到)。不知何故,我需要覆盖它当前正在读取的CSS并使其统一。
有什么建议吗?
谢谢-塔拉
On this page, there's a menu with an automatically generated submenu under 'life'. There are some problems with the submenu (it flickers and changes size - you'll see if you scroll over it). Somehow I need to override the css that it's currently reading and make it uniform.
Any suggestions?
Thanks - Tara
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从
/wp-content/themes/primus/primus/style.css
的第 744 行开始,您有以下 CSS:更改
padding
以匹配之前的内容>悬停:
Starting at line 744 of
/wp-content/themes/primus/primus/style.css
, you have this CSS:Change the
padding
to match what it is beforehover
:设置了
这是因为您在 a:link 上 :。然后在 a:hover 上将 padding 设置为 0。
尝试为这两种行为设置相同的填充值。
It because you have set:
on the a:link. And then you set padding to 0, on a:hover.
Try set the same padding values for both behaviors.