Map marker not showing

Hi as you can see on this page http://tinyurl.com/ydvrc4l the map marker on google maps is not showing, how can i fix this? thanks

I don’t think you should ask us…we don’t know googles code inside out :). I’d get in contact with someone else IMHO…don’t know what else to tell you lol :slight_smile:

i was suspecting it might be some conflict in css, as the marker from google probably works just fine :slight_smile:

Well take away all your CSS and then if it works then you know it’s just your CSS…at which point add in small bits of CSS until you pinpoint it:)

Drtanz, I had a similar problem with Google code in a site I used to maintain. Ryan’s approach is the correct one: take it all out and put it back in one element at a time until something breaks. Then you know what to address.

ok thanks will do that

this code is what is causing the problem

Content .normal img, Content .normal a img {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#EEEEEE none repeat scroll 0 0

Im trying to target the marker in the map and give it a background: transparent style, but having no luck in making a rule that supersedes the one above, any help pls?

Try this:


.mapp-div img{background:transparent!important}

works great, had forgotten about the !important property