Advertisement
Guest User

Untitled

a guest
Jan 29th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. // Add Custom CSS to Admin Area
  4. add_action('admin_head', 'my_custom_admin_css');
  5.  
  6. function my_custom_admin_css() {
  7. echo '<style>
  8. @media screen and (max-width: 782px){
  9. .form-wrap>p, .tablenav .view-switch, .tablenav.top .actions, .tablenav.top .displaying-num, .tablenav.top .tablenav-pages.one-page {
  10. display: block !important;
  11. }
  12. }
  13. </style>';
  14. }
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement