Wordpress Admin Menu Messed

WordPress admin menu display glitch in Google Chrome

This issue has very recently been fixed in Chrome 45.0.2454.93 so there should be no need to use this if you have the latest version of Chrome

The code below is only left in for reference.


You can fix this with CSS:

function chromefix_inline_css()
{
wp_add_inline_style( 'wp-admin', '#adminmenu { transform: translateZ(0); }' );
}

add_action('admin_enqueue_scripts', 'chromefix_inline_css');

Add that to your theme functions.php file and it should fix the problem. There's no check for the Chrome browser specifically, but it appears this fix has no adverse effect on other browsers, so no harm done.

If you just want a plugin to do it: https://github.com/raffjones/chrome-admin-menu-fix

Styling of menu bar in Admin panel of wordpress is compromised

Same for me, and it started after wp-login has stopped working. But we can't figure why.

EDIT: I've found a possible solution here, check it folks: Wordpress admin menu messed

WordPress admin menu display glitch in Google Chrome

This issue has very recently been fixed in Chrome 45.0.2454.93 so there should be no need to use this if you have the latest version of Chrome

The code below is only left in for reference.


You can fix this with CSS:

function chromefix_inline_css()
{
wp_add_inline_style( 'wp-admin', '#adminmenu { transform: translateZ(0); }' );
}

add_action('admin_enqueue_scripts', 'chromefix_inline_css');

Add that to your theme functions.php file and it should fix the problem. There's no check for the Chrome browser specifically, but it appears this fix has no adverse effect on other browsers, so no harm done.

If you just want a plugin to do it: https://github.com/raffjones/chrome-admin-menu-fix

Customizing Wordpress Admin menu

You can already get this functionality by clicking on "Pages", instead of hovering

Word Press Admin Menu

If you want the menu options pre-expanded, this plugin will work as well: http://wordpress.org/extend/plugins/expanded-admin-menus/

Missing content nav-menus.php in wp-admin

Completely removed and reinstalled WordPress fixed my problem.



Related Topics



Leave a reply



Submit