calin-beard
11/13/2017 - 4:09 PM

Fix parallax issue on iPhone and iPad - as the mobile version is also displayed on tablets

Fix parallax issue on iPhone and iPad - as the mobile version is also displayed on tablets

<!-- START hotfix for background issues on tablets -->
<style>
  @media only screen and (max-width: 767px){
    .border-holder{
      background-attachment: scroll !important;
    }
  }
</style>
<!-- END hotfix for background issues on tablets -->
<!-- START hotfix for background issues on tablets -->
<style>
  @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
    .border-holder{
      background-attachment: scroll !important;
    }
  }
</style>
<!-- END hotfix for background issues on tablets -->