Today I have a really strange problem. My WordPress admin menu is a mess and disappears on hover. I've tried deactivating all the plugins, changing the theme, but nothing works.
Has anyone any ideas? I cannot check in "Firebug", because if I open it, my menu reloads and everything appears fine. It's the same if I refresh the page, but without change url. You can see it in the print screen.
I don't use any custom admin style or scripts.
Wordpress 4.3
Which browser are you using? There is a known bug in chrome more info here: http://wptavern.com/a-bug-in-chrome-45-causes-wordpress-admin-menu-to-break
Also from the sounds of it looks like google will be fixing this as well soon
Add this to your functions.php to fix the bug not only in your browser but also in your client's. I tested it and worked well.
Source: https://code.google.com/p/chromium/issues/detail?id=509179#c37 (page found by @NooBskie)
Chrome has a rendering bug. There is a ticket open on Chrome's bug tracker about this issue, hopefully they will fix it soon.
In the meantime, here is a solution to eliminate the issue in Chrome.
Hope the problem will fixed.
You can also try the solution: https://code.google.com/p/chromium/issues/detail?id=509179#c37
This worked for me
Official Solution:
Disable slimmingPaint feature in chrome
Other Solution:
If you or your clients don’t want to disable the Slimming Paint feature, then you can get around the bug by adding the following code into your theme functions.php file:
I found the settings a little confusing at first, here's the simplification (possibly):
chrome://flags/#disable-slimming-paint
in ChromeDisable
keyword in their hashtag/flag must be inEnable
stateEnable
keyword in their hashtag/flag must be inDisable
stateI think this going to be a short-lived thing, but a very weird one (especially compounded with hunting plugin breakages related to WordPress 4.3 simultaneously).
I just updated Google Chrome to the latest version and it is resolved. Before attempting any unusual fixes, I would recommend going to Chrome -> About Google Chrome first to make sure you're running the latest.