Skip Navigation

[Resolved] Styling background (border) of map Infowindow pop-up

This thread is resolved. Here is a description of the problem and solution.

Problem:

How to style background (border) of Google map Infowindow pop-up?

Solution:

There isn't such kind of built-in feature within Toolset plugins, it needs custom CSS codes, for example below similar thread:

https://stackoverflow.com/questions/37456627/how-to-change-the-infowindow-background-color

Relevant Documentation:

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Our next available supporter will start replying to tickets in about 7.16 hours from now. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 3 replies, has 2 voices.

Last updated by Kenneth Horn 1 year, 8 months ago.

Assisted by: Luo Yang.

Author
Posts
#2563075

I read a prior support ticket response indicating that JS cannot be used to modify the map infowindow pop-up. Response indicated JS cannot be used for that purpose. However, is it possible using any other means (e.g. CSS or inline HTML) to modify the background of the pop-up (default is white). I am able to to modify all other styling inside the infowindow but would like, at a minimum, to change the color of the background (border). Any way to do that?

#2563579

Hello,

There isn't such kind of built-in feature within Toolset plugins, it needs custom CSS codes, for example below similar thread:
https://stackoverflow.com/questions/37456627/how-to-change-the-infowindow-background-color

I have tried it in below test site, those custom CSS codes can change the infowindow pop-up background color:
hidden link

#2563843

Yes. The CSS mentioned at the link works to change the background color. Here is an example to change it to black:
.gm-style .gm-style-iw-d::-webkit-scrollbar-track,
.gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece,
.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-t::after {
background: black;
}
Please note that your EXAMPLE site still showed the background in default WHITE. But that code does work for me.
Thanks

#2563845

My issue is resolved now. Thank you!