i refer to this support ticket , which waqar helped me with ,
https://toolset.com/forums/topic/map-pop-up-not-displayed-within-view/
the problem is that the top of the pop up gets hidden and the X to close is out of view,
sorry for the new thread ,i couldnt add to the old thread now.
thanks
Hi,
The position of the map marker popup is determined based on its initial height. But, when the content inside is collapsed its height increases, and the top part of the popup can stretch outside the map's visible area.
Although it is possible to manually drag the map's view down and make the popup's top part visible again, to avoid this, you have these options:
1. You can increase the overall height of the map.
OR
2. You can reduce the 'max-height' in the custom CSS that I shared earlier to a lower value like "120px":
.entry-content .wpv-addon-maps-render .gm-style .gm-style-iw-c .gm-style-iw-d {
width: 100% !important;
max-width: 100% !important;
padding: 4% 0% !important;
}
.entry-content .wpv-addon-maps-render .gm-style .gm-style-iw-c .gm-style-iw-d > div {
overflow-y: auto;
max-height: 120px;
}
I hope this helps and please let me know if you need any further assistance around this.
regards,
Waqar