Support

Account

Home Forums General Issues How to add a wrapper class Reply To: How to add a wrapper class

  • Found it. In functions.php:

    add_action('admin_head', 'my_custom_css');
    
    function my_custom_css() {
        echo '<style>
        .clear-left {
          clear:left !important;
        } 
      </style>';
    }