Actually I did do a search but the search engine on this board doesn't find any keywords that would actually be usefull and that i know are in some posts, I have no idea why.
The webpage is on my computer I always test it and build most if not all the content and functionality before uploading.
Here is some relevant code:
Code:
<!-- Menu Navigation Image Map -->
<map name="menu" id="menu">
<area shape="rect" href="index.htm" coords="4,90,66,120" alt="Home" />
<area shape="rect" href="index.htm" coords="78,90,164,120" alt="Quizzes" onclick="return clickreturnvalue()" onmouseover="dropdownmenu(this, event, 'quizzes')" />
<area shape="rect" href="index.htm" coords="174,90,242,120" alt="Poems" onclick="return clickreturnvalue()" onmouseover="dropdownmenu(this, event, 'poems')" />
<area shape="rect" href="index.htm" coords="254,90,320,120" alt="About" onclick="return clickreturnvalue()" onmouseover="dropdownmenu(this, event, 'about')" />
<area shape="rect" href="index.htm" coords="332,90,414,120" alt="Contact" />
</map>
<!-- Drop Down Menu's for MNIM -->
<div id="quizzes" class="link">
<a href="index.htm">Top Ranked</a>
<a href="index.htm">Most Recent</a>
<a href="index.htm">Most Popular</a>
<a href="index.htm">Browse All</a>
</div>
<div id="poems" class="link">
<a href="index.htm">Top Ranked</a>
<a href="index.htm">Most Recent</a>
<a href="index.htm">Most Popular</a>
<a href="index.htm">Browse All</a>
</div>
<div id="about" class="link">
<a href="index.htm">This Site</a>
<a href="index.htm">Site Author</a>
</div>
Both the css and javascript file are linked in properly, otherwise the menu wouldn't work at all obviously. I attempted placing the div's underneath the <area> definition for each menu but that didn't help.
And here is the bit later added amongst the main content that works just fine as it should:
Code:
<a href="http://www.chessoscorner.com/site/" onclick="return clickreturnvalue()" onmouseover="dropdownmenu(this, event, 'test')" target="_blank">Chesso's Corner</a>
<div id="test" class="link">
<a href="index.htm">Test</a>
<a href="index.htm">Test..2</a>
<a href="index.htm">Test..3</a>
</div>
Bookmarks