Hi everyone,
how can I replace this code div.mce-toolbar-grp{min-width: 100%;}
by this div.mce-toolbar-grp{min-width: inherit;}
in my child theme ?
This is line 89 in avia-builder.css (config-templatebuilder\avia-template-builder\assets\css) making the tools panel overpass all content on its right. And covering Publish and preview buttons
Hey Anton!
Not sure what you mean by that, could you link to a page where we can see the problem?
You can try to add the following to Quick CSS or your child themes style.css:
div.mce-toolbar-grp{min-width: inherit !important;}
Best regards,
Rikard
The line 89 in avia-builder.css (config-templatebuilder\avia-template-builder\assets\css) which is
div.mce-toolbar-grp{min-width: 100%;}
makes the tools panel overpass all content on its right. And covering Publish and preview buttons : https://www.dropbox.com/s/2pak305nao9xhy1/ScreenShot_20150908112029.png?dl=0
https://www.dropbox.com/s/65f3x8pflclc5dw/ScreenShot_20150908112342.png?dl=0
So I need to put the code
div.mce-toolbar-grp {min-width: inherit;}
into my child theme, but I don’t know how. FYI: Quick CSS didn’t work with “inherit !important”.
Any other suggestions ?
Hi!
Please add following code to Functions.php file of your child theme in Appearance > Editor
add_action('admin_head', function() {
?>
<style>
div.mce-toolbar-grp {min-width: inherit !important;}
</style>
<?php
});
Regards,
Yigit
Worked, thank you.
Resolved
Hey!
You are welcome, we are always happy to help!
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)
Regards,
Yigit