Hi Hiddan,
Thought I’d just help you out as a fellow webdesigner.
Add the following rule to your Custom CSS in the OSM widget.
selector {
pointer-events: none;
}
And if you only want the scrolling feature enabled on desktop, but disabled on mobile and tablet, make it like this:
@media only screen and (max-width: 900px) {
selector {
pointer-events: none;
}
}
Thread Starter
Xusje
(@xusje)
And if you only want the scrolling feature enabled on desktop, but disabled on mobile and tablet, make it like this:
@media only screen and (max-width: 900px) {
selector {
pointer-events: none;
}
}
-
This reply was modified 5 years, 1 month ago by Xusje.
Thread Starter
Xusje
(@xusje)
Nevermind, already helped myself!
I found a CSS trick that works.
Add the following rule to your Custom CSS in the OSM widget.
selector {
pointer-events: none;
}
-
This reply was modified 5 years, 1 month ago by Xusje.
-
This reply was modified 5 years, 1 month ago by Xusje.