Hello,
This could be a plugin conflict so please disable all plugins except the page builder, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
@bogdan-b problem happened on MacOS on Safari and latest version of chrome,
I test it on pure clean WP installation, tried on Incognito, I still see the problem! in this case, I think the problem on Newspaper… or maybe conflict with one of tagDiv plugins, because activated only Newspaper plugins
OK,
Please contact us on our email address at contact@tagdiv.com and provide a link to your site and wp-admin (login information and admin rights) so we can login and investigate. Please also include a link to this conversation so we can identify you.
Thank you!
I have the same issue – assumed that there was a conflict somewhere. Can you please post the solution if you find one?
@bogdan-b and @stuartmasson
The problem comes only on MacOS
the solution is pretty easy,
but should be implemented from @tagDiv side
SOLUTION 1 with padding-right for hiding scroll-bar
.tdc-inspector {
width: 300px;
padding-right: 17px; }
SOLUTION 2 with pseudo:class
also, the solution can be with CSS pseudo class (only WebKit… we don’t care about IE9)
.tdc-inspector {
width: 300px; }
.tdc-inspector::-webkit-scrollbar {
width: 0px; /* remove scrollbar space */
background: transparent; /* optional: just make scrollbar invisible */ }
