Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ben Huson

    (@husobj)

    There is a style in the theme forcing the background colour of all images in your post to be white. This appears on line 1124 of your theme’s style.css

    .avatar, .entry-content img, .featuredpage img, .featuredpost img, .post-image {
       background-color: white;
       border: solid #EEE;
       padding: 1px;
    }

    The map is contained in a div with ID ‘wp_geo_map’ so you could add an addition style below to overwrite the background style for images in the map:

    #wp_geo_map img {
       background-color: transparent !important;
    }
    Thread Starter nbostic

    (@nbostic)

    Ah! You’re my hero! I knew it had to be something relatively simple, I was just having a hard time getting the inspector to examine the pin on the map. Thank you so much, that fixed it!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP Geo] Incompatible with StudioPress Genesis Child Themes’ is closed to new replies.