I am in the process of creating a desktop-style website. I have an image map which has hotspots for all the different icons on my website. When an icon is clicked a div should popup.
Below is my div code from the css:
css Code:
#about {
border: 1px solid #ccc;
height: 120px;
width: 400px;
overflow: auto;
margin: 1em 0;
}
Here is my image map code:
What do I need to put in the onClick section for the about div to pop up on top of the image map, not above or below!
Thanks in advance
Adam