CSS interactive map

Hey,

I´m using this “draw attention plugin” for interactives maps.

I just can´t figure out how to remove this pop up via CSS once I hover over the map.

Do you have any idea?

Thx in advance!

Hello Nikolaus,

Thanks for reaching out. :slight_smile:

Please add following CSS under Pro > Theme Options > CSS:

.leaflet-overlay-pane g {
    display: none;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

If I do this, the map hover and the hyperlink disappears as well.

I just want the tooltip popup to disappear…

any idea?

Thanks!

Hi Nikolaus,

This should work

.leaflet-tooltip-pane {
    display: none;
}

Else, please contact the plugin author. It’s an SVG and some CSS may not work.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.