Visual composer text block error
I would like to ask if there is anyone who came across a similar or this exact problem. Everything worked fine yesterday, but today when I was trying to paste text from a wordpress textblock into a textblock (text editor) I couldn't select Header1 or Paragraph or whatever, this dropdown doesn't work.
This issue appeared on all wordpress pages I have with version 4.8.1, it affected visual composer as well as site page builders.
How can I fix this? CM. SCREEN
yes, it is confirmed now, all my sites are using Visual Composer and they all have the same problem after 4.8.1. I installed 1 site with wordpress 4.8 and it started working. we have to wait for an update from visual composer.
Quick fix before the update arrives.
Add this bit to your functions.php file.
function your_function_name() {
echo '
<style>
.mce-container.mce-panel.mce-floatpanel.mce-menu.mce-menu-align {
z-index: 999999999 !important;
}
</style>';
}
add_action('admin_head', 'your_function_name');
Ok, it's a little easier to fix this to add this to your admin css:
.mce-container, .mce-container-body {
z-index: 100000 !important;
}
An even lazier way is to use something like http://coffee2code.com/wp-plugins/add-admin-css/
and add it there. I think this has been fixed in the newest version of VC.