Jump to content

Recommended Posts

Posted

Heads up for any PW developers who use parallax images on the front end of their sites. Chrome v67 has introduced a bug - grrrrr. A quick search found the solution for me:

https://productforums.google.com/forum/#!topic/chrome/DC4IFvGXdIA;context-place=topicsearchin/chrome/category$3Awindows-10%7Csort:relevance%7Cspell:false 

In your CSS:

/* google chrome 67 parallax bug fix */
.parallax {
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
}

 

  • Like 2
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...