Use the below example code in your theme’s functions.php file for WordPress admin menu formatting issue.
1 2 3 4 5 6 | function chromefix_inline_css() { wp_add_inline_style( 'wp-admin', '#adminmenu { transform: translateZ(0); }' ); } add_action('admin_enqueue_scripts', 'chromefix_inline_css'); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.