• The box-shadows in the style css create unwanted shadows in leaflet maps. I got around this by adding the following to the style.css, but is there a better way?

    `
    .leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    }
    `

Viewing 1 replies (of 1 total)
  • I don’t know which area of the theme you’re referring to, but if you have unwanted styles that you want to get rid of then using CSS is the way to do it.

    If you can link to your site I can inspect further and may be able to offer a solution without using !important, but it depends on which element you’re trying to modify.

Viewing 1 replies (of 1 total)
  • The topic ‘Conflict with leaflet map plugin’ is closed to new replies.