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 questionWhen 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 questionWhen 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
1 Answer
Reset to default 1If 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.