I'm using a picture with polygonal hotspots. In IE the hotspots are visible and I do not want that effect. How can I prevent this? Thanks
Go here: http://animactions.ca/Animactions/volet_entreprise.php with IE and select one
I'm using a picture with polygonal hotspots. In IE the hotspots are visible and I do not want that effect. How can I prevent this? Thanks
Go here: http://animactions.ca/Animactions/volet_entreprise.php with IE and select one
Have you tried setting the style 'outline: 0;' on all of your links in your image map?
You can try:
a, area {
outline: 0;
}
This will remove the ugly outline around any links on your site that appear when you click them.