Click to See Complete Forum and Search --> : Anchors In Side Area Tags


therock
08-11-2005, 11:59 PM
Hey Everyone,

I am sort-of new to HTML, and I am trying to create a map in my webpage that serves for the links to the navigational buttons in my page.

The problem is that I cannot set anchors inside the area tag so that when someone clicks on the image link, it will take the person to a certain place in that same page.

This is my code so far, I have used some help from Frontpage...

***
**
*

<a name="News"></a>

<!-- Map Starts Here>
<area shape="rect" coords="28,1,142,38" href="Main Page#News.html" target="_self" alt="Music"> </map>
<!-- End Of Map>

*
**
***

Supposively, this isin't working...

So, what I want, is that when someone clicks on that image link (through the <area> tag) the anchors kick into place, and the person is redirected to another place in the same page.

This being my first thread, I hope you pro's could help me out?

Thanks a lot in advance. :)

cbstudio
08-12-2005, 12:22 AM
i don't know exactly what you're doing here but i would think that the answer would be to change the link to

href="Main Page.html#News"

felgall
08-12-2005, 04:40 PM
If Main Page.html is the current page then you only need

<area shape="rect" coords="28,1,142,38" href="#News" alt="Music">