Viewing 3 replies - 1 through 3 (of 3 total)
  • I see this CSS issue still hasn’t been addressed.

    Like the OP mentioned, line 382 in /wp-content/plugins/zendesk/css/admin.css should be corrected, or simply eliminated, as it’s overriding CSS on other non-Zendesk WP admin pages.

    And out of curiosity, why would you want to use a font-size as small as 12px?

    Adding this class will fix the problem:

    .toplevel_page_zendesk-support .form-table td {
    	font-size: 12px;
    }

    Thanks!

    Thread Starter sgPlanwize

    (@sgplanwize)

    I won’t wait for them to fix it.
    Just hook in to the “admin_head” action and put the amended CSS rule, it would take precedence of other rules

    Yeah, I agree, it seems that this plugin has been abandoned. Too bad, though fortunately it’s still working for the most part.

    For anyone else reading this, you also need to add something like this to undo the .form-table td CSS damage:

    .form-table td {
    	font-size: inherit !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘admin.css load for all admin pages’ is closed to new replies.