Hi @cinred,
I won’t recommend to remove the credits. However you can achieve this by using CSS:
.open-user-map .leaflet-container .leaflet-control-attribution {
display: none;
}
Best regards,
Daniel
Thread Starter
cinred
(@cinred)
I do not want to break any part of our licensing agreement but that text under the map is distracting and not very appealing in my opinion. Is there a compromise we can make? I don’t mind leaving you a glowing review because I really do love the map. I’m getting such good feedback. I am buying the pro-version, but maybe we can work something else out? It is almost enough to make me look for something else. Is there a way to handle this?
Hi @cinred,
You won’t break licensing agreement between us when removing the map credits. This up to you. I just mentioned that it is not “good practice” to remove the credits. However – I can also see that in your case they claim a lot of space. Maybe you should scale up the map and use full width. Because your theme has a sitebar you might try this CSS to get in the right direction:
.open-user-map .box-wrap .map-wrap {
width: 1038px;
max-width: calc(100vw - 222px);
margin-left: 50%;
transform: translateX(-50%);
}
@media screen and (max-width: 1007px) {
.open-user-map .box-wrap .map-wrap {
max-width: 100vw;
}
}
Additionally you could increase the Custom Height under Settings > Open User Map > Map Settings > Map Size.
Best regards,
Daniel