Comments Michael started the conversationJanuary 14, 2016 at 1:54pmWhen 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,992Tahir repliedJanuary 14, 2016 at 11:50pmHey ,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 1 Like Sign in to reply ...
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?
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