dynamic / silverstripe-locator

SilverStripe Locator Module. Show locations on a map. Search by geoposition.
http://www.dynamicagency.com/labs/silverstripe-locator-module/
BSD 3-Clause "New" or "Revised" License
21 stars 7 forks source link

Map buttons don't work properly #224

Closed kenlog closed 4 years ago

kenlog commented 4 years ago

Describe the bug The map buttons are not working properly, they are always loading, what is it due? Thank you very much!

"silverstripe/recipe-cms": "4.6.0@stable"   
"dynamic/silverstripe-locator": "3.1.1"

Screenshots map

mak001 commented 4 years ago

This is possibly caused by a theme, like simple, adding a background images to image tags. This can potentially be solved by adding this css to the site:

.locator-map img {
    background: none;
    border: none;
}
kenlog commented 4 years ago

Hi @mak001 thank you your suggestion was helpful but I had to overwrite it like this:

.typography img {
    background: none!important;
    border: none!important;
}