-
AuthorPosts
-
September 7, 2015 at 10:19 pm #499554
Hi everyone,
how can I replace this code
div.mce-toolbar-grp{min-width: 100%;}
by thisdiv.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
September 8, 2015 at 8:52 am #499714Hey 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,
RikardSeptember 8, 2015 at 11:28 am #499767The 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=0So 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 ?September 8, 2015 at 12:19 pm #499782Hi!
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,
YigitSeptember 8, 2015 at 12:39 pm #499797Worked, thank you.
Resolved
September 8, 2015 at 1:05 pm #499813Hey!
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 -
AuthorPosts
- The topic ‘avia-builder.css issue’ is closed to new replies.
