• Hi!

    When you click a location the store info appears on white making it unreadable against the white background.

    How can I change the text color?

    Thank you and congratulations for a great plugin.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.
    Thread Starter hhuesca

    (@hhuesca)

    That worked great!

    Thank you ??

    My pleasure ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change font color on Info Window’ is closed to new replies.