logocopy3 Im having issues linking a specific part of an image (area map) with the hover effect. Currently I have the ability to click each section of the imagemap and it directs me to the required page, however I would like the hover effect to be displayed before the user clicks so they know which page they are navigating to. Basically Im trying to display a text which stays in the same position sitting above the image map each time the user hovers over a specific area.
My code is as follows:
<div>
<img src="logocopy3.png" id="logo" style="width: 260px; max-width: 100%;
height: auto;" alt="" usemap="#map" />
<map name="map">
<area shape="circle" coords="243,132,41" href="Ktrack.html" alt=''/>
<area shape="circle" coords="189,223,41" alt='' href="Kinsurance.html" />
<area shape="circle" coords="69,205,29" alt='' href='Khealth.html'/>
<area shape="circle" coords="9,131,42" alt='' href='Klocklock.html' />
<area shape="circle" coords="128,49,81" alt='' href='index.html'/>
</map>
</div>