• Resolved toto

    (@toto)


    Hi friends i just install the new WP 8, and the new backed design is not good, not usable, bad colors and fonts. All panels are not good feel and look, not scanable interface. Admin menu has no separators our clients are very confused.

    Is there a way to restore old WP design from WP 7, is there a plugin?

    Thanks a lot.

Viewing 3 replies - 16 through 18 (of 18 total)
  • Cool, we all want WP to be better at the end of the day!

    Well, I hade the same problems with it as websanity. But you can fix those font-sizes with a plugin. This is crude and so so, but a start that at least fixes the menu:

    <?php
    /*
    Plugin Name: Fix Admin CSS
    */
    
    function admin_css_fix() {
    ?>
    <style type="text/css">
    .tablenav .tablenav-pages a {
    	padding: 3px 10px 3px;
    	line-height: 30px;
    	font-size: 12px;
    	font-weight: 600;
    	border: 1px solid #d3d3d3;
    }
    #adminmenu a.menu-top, #adminmenu .wp-submenu-head,
    td.post-title strong, td.plugin-title strong,
    td.post-title strong a.row-title {
    	font-size: 13px !important;
    }
    #adminmenu .wp-submenu a {
    	font-size: 12px;
    }
    </style>
    <?php
    }
    add_action( 'admin_head', 'admin_css_fix' );

    THANK YOU esmi!!

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘WordPress 3.8 restore old admin theme design back’ is closed to new replies.