Okay
  Public Ticket #636048
Edit window
Closed

Comments

  • Michael started the conversation

    When I click 'edit' on a Virtual Composer (v 4.7.4) element using Chrome on Max OS X the edit window always comes up at the very bottom of the page which is very annoying. I'm running Salient 7.1. IS this a known issue?

  •  8,992
    Tahir replied

    Hey ,

    Add this code to function.php


    add_action(\'admin_head\', \'admin_custom_css\');

    function admin_custom_css() {
    echo \'<style>
    .vc_ui-panel {
    position: fixed !important;
    z-index: 100000;
    top: 74px !important;
    }
    </style>\';
    }



    This will solve the problem and readjust the editor to his common position.


    ThemeNectar Support Team