Drop Down Menu
this kind of drop down menu is basicly tables within tables. Sub links appear when a mouse hovers over it.
Css:
Javascript:
*remember those two goes inbetween your header tags
html:
there are some things to think about while your changing and adjusting the code for your site.
- The width of the menu is at 100% so it will stretch to the full length of whater you put it in.
- The mouseover effect reacts with the word, not an image of the word
- when you get to this part
<td onmouseover="showmenu('Title 3')" onmouseout="hidemenu('Title
3')">
<a href="URL HERE">Title 3</a><br />
<------this is the one that shows
<table class="menu" id="Title 3" width="120">
<tr><td class="menu"><a href="URL HERE">link</a></td></tr>
<tr><td class="menu"><a href="URL HERE">link</a></td></tr>
Make sure that all 4 are the same name
- Right now the main menu are all links with plain text. what I do is change them into headers, that way I can put backgrouds and change the font and color