Okay
  Public Ticket #2082722
Map leaflet shouldnt drag on mobile/tablets devices
Closed

Comments

  • Bruno started the conversation

    Hello.

    Its excelent that you have leaflet map available. Actually its great. And thank you for that. But... please can you share a css code in  order to NOT make the map draggable on mobile/tablest device? 

    thank you, love your theme.

  •  8,994
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width:1000px) {
        .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
            pointer-events: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • Bruno replied

    thank you sir!