Hi there!
I have been looking at your website, and it appears that the text in the info window being white is something you have coded in your CSS stylesheets, see screenshot.
There is this CSS rule somewhere in your custom CSS stack:
#wpsl-search-wrap label,
#wpsl-wrap #wpsl-stores li *,
#wpsl-gmap .wpsl-info-window {
color: #ffffff !important;
}
It seems you want certain texts in your website to be white, which is normal because the website is mostly black, but the info window line is not necessary here.
So, if you modify the rule above to make it look like this:
#wpsl-search-wrap label,
#wpsl-wrap #wpsl-stores li *{
color: #ffffff !important;
}
Depending on where this rule is declared, that may not be enough. In that case try adding this rule also:
.wpsl-info-window {
color: black !important;
}
This would be the end result (see screenshot).
I hope that helps,
Regards,
-
This reply was modified 2 years, 3 months ago by
farroyo.