Viewing 4 reply threads
You must be logged in to reply to this topic.
I noticed that parallax gets enabled when switching an iPad to landscape view. I would like to globally disable parallax when in landscape mode. What is the best way of going about that without having to manually adjust CSS for individual DIVs?
Hello,
Please make sure to disable parallax. Please go to Row Options > Parallax, set it to ‘None’.
it is not possible for it to enable just in landscape mode.
Best regards!
By default, parallax is disabled in portrait view on the iPad. Is there a way to have it disabled at the landscape resolution?
I would like parallax enabled for desktop browsers.
Hello,
Please add this code into your custom css box:
@media (max-width: 1024px){
.section-style.parallax_section {
background-position: 0 0 !important;
background-attachment: scroll !important;
background-size: cover;
}
}
Let us know.
Best regards!
You must be logged in to reply to this topic.