最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

css - How to trace and resolve a theme problem such as flickering links in WordPress?

programmeradmin4浏览0评论
Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 4 years ago.

Improve this question

When I hover the mouse/cursor over any link on my website the link flickers and it takes some time for the link to be active.

You can see this here when you hover over any link on images and text.

I have tried to analyze the code of my theme but couldn't find anything obviously connected to the problem.

Have you any idea how I could solve this?

Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 4 years ago.

Improve this question

When I hover the mouse/cursor over any link on my website the link flickers and it takes some time for the link to be active.

You can see this here https://www.ff-almoshof.de when you hover over any link on images and text.

I have tried to analyze the code of my theme but couldn't find anything obviously connected to the problem.

Have you any idea how I could solve this?

Share Improve this question edited Apr 20, 2020 at 12:23 bueltge 17.1k7 gold badges62 silver badges97 bronze badges asked Apr 7, 2020 at 17:00 Patrick VogtPatrick Vogt 1033 bronze badges 1
  • 3 It's usually best to contact the theme author directly. – WebElaine Commented Apr 7, 2020 at 17:11
Add a comment  | 

1 Answer 1

Reset to default 1

If you are still interested to look for the reason, here is the CSS code that cause the flickering (which is a CSS related issue).

In the theme's style.css

  a:focus, a:hover {
    /* ... */
    animation-name: fadeIn; /* <=== this cause the flickering, just comment it out or use another CSS to override this such as animation-name: none; */
    /* ... */
  }

Like @WebElaine mentions, generally if theme has problem, you may consider

  • contact the author
  • sometimes, maybe there is chance that you might need to overcome the problem immediately before author updating the theme, you may consider to add your own override. You could do it by using child theme and create your own CSS file.
发布评论

评论列表(0)

  1. 暂无评论