Okay
  Public Ticket #843836
Lock Google Map from scrolling / moving
Closed

Comments

  •  5
    Erik started the conversation

    I love the Google Map feature, but the when viewing the nap in an iPhone or mobile device, the map actually interferes with the user scrolling down the web page.   When the user is swiping down with his/her finger, the user gets stuck in the map, because the map us free floating and can move itself.

    Can j lick the map? Or somehow place a clear overlay above it keeping it from moving?

  •  8,403
    Tahir replied

    Hey ,
    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (min-width: 690px) {
        .nectar-google-map {
            pointer-events:none !important;
        }
    }
    
    

    Bes.t


    ThemeNectar Support Team 

  •  5
    Erik replied

    THIS DID NOT WORK.

    I can still swipe the map when I'm scrolling down on my iphone.  This is very annoying.  There really should be a way to lock the map from moving around when fingers are swiping the page.

  •  8,403
    Tahir replied

    Hey Again,
    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (max-width: 690px)
    .nectar-google-map {
        pointer-events: none !important;
    }
    

    Best.


    ThemeNectar Support Team