Google Maps Black and White?

Is it possible to get the Google Maps element to go black and white versus the default colors that are shown?

Hello @tkcostello,

Thanks for asking. :slight_smile:

Please add a custom class under Customize and then add following CSS under X/Pro > Theme Options > CSS:

.google-maps { 
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

In above code google-maps is the custom class name. Please replace the same with your own. https://cl.ly/0N0W2n3l3X0b

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.