• 90% of the plugin code is for an admin notice for asking for a donation. I am NOT against asking for donations, but a 1 line CSS fix? really? Why not just give back to the community ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m agree with you!

    CSS: #adminmenu { transform: translateZ(0); }

    OR IN FUNCTIONS.PHP:

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

    add_action(‘admin_enqueue_scripts’, ‘chromefix_inline_css’);

    I would have to agree. Thanks for posting the fix, but creating a plugin to deploy a single function is a bit drastic. Nice quick css fix though so cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Works but why bloat with an admin notice’ is closed to new replies.