• Resolved gecko_guy

    (@gecko_guy)


    Hi, more of a design request than anything.

    There is no space between the control bar and the Save button, which make it look a bit bunched up. Really not critical, but would look a bit nicer.

    1

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter gecko_guy

    (@gecko_guy)

    btw, you can mark this resolved if you like.

    It is quite possible the issue is being caused by my theme, or the peculiar screen resolution of the laptop I am using, however, if anyone else stumbles upon this thread with the same question, then the way I have made it look prettier is by adding a bit of Admin side CSS to the functions.php of my child theme, like this:

    function my_custom_admin_styles() {
      echo '<style>
    
    /*Add a bit of space beneath the Conditional Widgets Title Bar*/
    
    .widget.open .widget-content { margin-bottom: 10px; }
    
    /*Change the overflow scroll to Resize instead and make the height auto*/
    
    .widget.open .widget-content #cets-conditional-widget .conditional-widgets-checkbox-wrapper { height: auto; resize: both; overflow: hidden; } 
    
      </style>';
    }
    
    add_action('admin_head', 'my_custom_admin_styles');

    Also just a note of thanks for making the plugin available to the community, it seems to work very well!

    Yeah, tweaking up the Admin look has been on the ‘someday’ list. The Dashboard has gotten a few facelifts and I haven’t been able to keep up.

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Padding/Margin after the Widget Display Control bar would be nice’ is closed to new replies.