Can I turn the parallax off for the mobile version?

Hi,

I have a parallax on my homepage and it looks great on a desktop, but if i open it on a mobile device its a very zoomed in version of the photo. So, I wanted to see if I can turn the parallax off for the mobile version, but keep it on for the other versions?

Thanks!

Hello @ginadhaliwal,

I would suggest you please add this custom CSS code to the section —>customize —>element CSS

@media(max-width:978.98px){
$el.x-section.bg-image.parallax{
background-size: cover !important;
}
}

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case if you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps
Thanks