Hi @vonbieker
You can check some examples of custom css targeting tooltips in this page: https://interactivegeomaps.com/docs/tooltip-styling-with-custom-css/
Greetings, Carlos
Hi Carlos – thanks for that – and for the great plugin.
I had found that page in my searching, but it doesn’t address what I’m trying to do. My goal is to change the colours – I’m OK with everything else. Right now the tooltips are a white background with dark text and I’d like them to have a red background with white text to match the theme. I don’t need any of the features from the pro version, just wanting to change the colour with some targeted CSS. Is this possible?
This would be much easier in the Pro version, since you wouldn’t need custom css.
But this should work:
.map_wrapper .imapsTooltip-group g { fill:red; }
.map_wrapper .imapsLabel div { color:#FFFFFF !important; }
Greetings, Carlos
Carlos – I apologize for not coming back to tell you this sooner, but THANK YOU! That worked like a charm to do just what I needed to do.