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;
}
}