Is there a way to attach two href links to one image using CSS? I want it to function like an old school image map, but purely with CSS. Is this something that can be done?
The current HTML code looks like the example below. However, I need the image to have two different URLs depending on where the user hovers their mouse.
<div id="logo-wide">
<a href="http://myurl1"><img src="BIG-Logo_FINAL.png" alt="url-name1"></a>
<a href="http://myurl2"><img src="BIG-Logo_FINAL.png" alt="url-name2"></a>
</div>
Philip