tagDiv Composer sidebar menu CSS bug

Posted in: Newspaper
Post count: 75

It’s only me so lucky? or it’s CSS bug?
check screenshot, please
bug

  • This topic was modified 7 years by reatlat.
Post count: 22421

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!

Post count: 75

@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

Post count: 22421

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!

Post count: 75

@bogdan-b done, I sent full access to your email.

Post count: 118

I have the same issue – assumed that there was a conflict somewhere. Can you please post the solution if you find one?

Post count: 75

@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 */ }
Post count: 4

I am having the same issue, latest version of MacOs and Safari. Where shall I put that code? Simply as custom CSS in the theme custom code field?

Viewing 8 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic.