• As the prior reviewer said
    “I have the + next to all widgets, but clicking that just opens up the widget settings.”

Viewing 1 replies (of 1 total)
  • Here’s a fix.

    add this to your functions.php. Minor CSS fixes it.

    function custom_admin_css() {
       echo '<style type="text/css">
    .widget-top a.widget-action, .widget-top a.widget-action:hover {
        padding: 1px;
        display: inline-block;
    }         </style>';
    }
    
    add_action('admin_head', 'custom_admin_css');
Viewing 1 replies (of 1 total)
  • The topic ‘Doesn't work’ is closed to new replies.