Close

Disable Column Parallax on Mobile

Add the following to Theme Options – Custom CSS , to disable data parallax on mobile

@media (max-width: 768px) {
*[data-paroller-factor] {
/*for all elements with background parallax effect*/
background-position: center !important; 
/*for all elements with foreground parallax effect*/
transform: none !important;
}
}

Powered by BetterDocs