Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #25108

    Hi, I have a small conflict with an admin theme. As seen here: http://i.imgur.com/UGLsPRt.jpg?1

    Basically, I would just need to increase the top padding of the Avia lightbox when adding shortcodes, so it comes below the overlaying theme panel. Could you assist me in finding where to increase that padding please?

    Thank you!

    #125798

    Add following code to the buttom of functions.php:

    // THIS GIVES US SOME OPTIONS FOR STYLING THE ADMIN AREA
    function avia_editor_fix_style() {
    echo '<style type="text/css"> .avia-modal { top: 60px !important; } </style>';
    }

    add_action('admin_head', 'avia_editor_fix_style');

    Obviously you can replace 60px with another value.

    #125799

    I LOVE YOUUUU!!! :)

    Changed it to 150px and it’s perfect now, thanks so much! 150px isn’t too much for me as I’m using a 27 inch display, so got plenty of room left.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Avia admin pop-up panel conflict’ is closed to new replies.