mgmyer
6/9/2015 - 5:36 PM

Fixes issue relating to fixed background attachment interfering with other fixed elements on page...creating new layer. Link to more info: h

Fixes issue relating to fixed background attachment interfering with other fixed elements on page...creating new layer. Link to more info: http://stackoverflow.com/questions/20268962/fixed-attachment-background-image-flicker-disappear-in-chrome-when-coupled-with

#masthead {
  background-color: transparent;
  position: fixed;
  /*Removes the bug from capabilities page where the fixed background attachment was interfering with header sticking on fast scroll */
  -webkit-transform: translate3d(0,0,0); 
}