Hi Netixel,
A few questions:
What’s the browser type and what happens if you use a different one?
What operating system?
Are you using HTTPS or HTTP in the admin?
Finally, can you share a screenshot?
-EmbedPlus Team
Hi team,
– I use the last version of Chrome, Edge for example, I have the same issue.
– Operating system : Windows 10
– I use HTTPS
Your plugin after the update :

Your plugin before the update :

Regards
Hi Netixel,
It looks like it’s a compatibility issue with Visual Composer. Do you use it?
The below might fix it. Add this CSS to your Admin (You may wish to use a plugin like this to easily add the below CSS: https://ww.wp.xz.cn/plugins/admin-css-mu/ instead of hardcoding it):
body #TB_overlay {
z-index: 100000000 !important;
}
body #TB_window {
z-index: 100000001 !important;
}
-EmbedPlus
Yes I use Visual Composer and Vibe Shortcodes.
Thanks, it works but can I use this CSS without install admin-css.mu ? Because too much plugin slows down my website
Regards
Chris
Hi,
The plugin recommendation was just in case you didn’t know how to insert the CSS. You could do it this way if you don’t want to use a plugin:
https://davidwalsh.name/add-custom-css-wordpress-admin
Regardless, the next update to the plugin will include this CSS fix, so you won’t have to include this on your own forever.
-EmbedPlus Team
It works, thanks very very very much.
I use a child theme so if I can help someone else here is the code to put in functions.php :
function admin_style() {
wp_enqueue_style('admin-styles', get_stylesheet_directory_uri().'/admin.css');
}
add_action('admin_enqueue_scripts', 'admin_style');
Admin.css
body #TB_overlay {
z-index: 100000000 !important;
}
body #TB_window {
z-index: 100000001 !important;
}
Do you think you can correct this worry in the next update? To correct this conflict with Visual Composer?
Regards
-
This reply was modified 9 years, 2 months ago by
netixel.
Hey guys,
When are you planning for the next update?
Let me know.
Thanks