Scrollable container mobile scrolling clunky

Thank you for this information this is very helpful~what about this~is there a way to make the background tile instead of stretch?

Hi,

If you want it tiled, you can replace the css code with this.

.full-screen-row {
  background: url('http://jaredmadere.com/wp-content/uploads/2018/03/11.jpg') top left repeat;
  background-attachment: fixed;
}
@media (max-width: 979px) {
    .full-screen-row {
         background: none #000000 !important;
    }
}

Hope that helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.