• Resolved jjanson

    (@jjanson)


    Hi!

    I know this question is asked many times and there is a CSS example in the documentation. But I cannot get the plugin to work correctly in Chrome. The fix should be easy with the correct CSS but I can’t get it to work. Check out the problem here:

    http://www.hellobackpack.com/about

    Thanks for your help!

    Cheers,
    Justin

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter jjanson

    (@jjanson)

    I just noticed I have the same issue with Firefox.

    Cheers,
    Justin

    Plugin Contributor Max Bond

    (@max-bond)

    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.
    Thread Starter jjanson

    (@jjanson)

    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.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Plugin not working in Chrome’ is closed to new replies.