Hello, I would like to disable lightbox on mobile only. Has anyone been able to do this?
Does anyone have insight on this?
Hi,
Thank you for the inquiry.
You can use the following css code to disable all lightbox elements on smaller screens.
@media only screen and (max-width: 768px) {
/* Add your Mobile Styles here */
.lightbox,
.lightbox a,
.lightbox img {
pointer-events: none !important;
}
}
Best regards,
Ismael
Awesome! Thank you @ismael
Hi,
Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
