Hello,
I have a blog with all of the archives contained in a drop down menu. At the
end of the page, I have a "More Articles" link which I want to link to the
Archives Menu. I just want to hyperlink More Articles to the On-Page
Archives Menu.
The Archive Menu is script written by someone else and I can't see where to
put the anchor so it associates with the menu. The script is shown below.
I am using:
<a href="#archives">More Articles</a> and
<p id="archives"> xxxxxxxxx </p>
Can anyone see how to set this up so More Articles jumps to the Archives
Menu?
Thanks a lot,
Bob
Blog: Usability In The NewsUsability In The News
---
<MainOrArchivePage>
<select name="archivemenu" onchange=
"document.location.href=this.options[this.selectedIndex].value;">
<option selected="selected">- Archives -</option>
<BloggerArchives>
<option value="<$BlogArchiveURL$>"><$BlogArchiveName$></option>
</BloggerArchives>
</select>
|