I just noticed I have the same issue with Firefox.
Cheers,
Justin
Hello!
It was not easy, but I traced the problem to this style definition – theme.css line 258:
#off-canvas-body-inner > #page-wrapper {
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
}
solution is to disable css property – -webkit-transform-style: preserve-3d;
#off-canvas-body-inner > #page-wrapper {
/*-webkit-transform-style: preserve-3d;*/
-webkit-backface-visibility: hidden;
}
or you may overwrite this rule in your custom css:
#off-canvas-body-inner > #page-wrapper {
-webkit-transform-style: flat !important;
}
-
This reply was modified 9 years, 6 months ago by
Max Bond.
Hello Max,
That solution immediately did the trick! It’s working in Chrome and Firefox perfectly now.
Thanks for your very quick response and the fix!
Cheers,
Justin
Hey guys,
This will be different with every website?
Because I have the same issue and the code above didn’t help me.
The plugin doesn’t work on chrome but works fine on Firefox.
http://howtomakeawebsite.tech/
Can you pleas help?
I just disabled the plugin and activated it and it worked fine.