MyBB Community Forums

Full Version: Trying to make a Drop-down menu....
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is what I have so far.
<ul id="navigation">
<li><a href="http://www.google.com">Google</a></li>
<ol><a href="http://www.yahoo.com">Yahoo</a></ol>
</ul>
<style>
ul#navigation {
display:inline;
}
ul#navigation li{
display:block;
}
ul#navigation ol,a:hover{
display:block;
}

</style>
But I can't think of a way to make it so that when my mouse hovers over the LI (google) it will make yahoo show.
Well normal HTML menus are made like this:

<select>
<option>http://www.google.com/</option>
<option>http://www.yahoo.com/</option>
</select>

Not too sure exactly what you're doing, but I hope that helps.
(2008-10-25, 09:20 PM)Infernolized Wrote: [ -> ]Well normal HTML menus are made like this:

<select>
<option>http://www.google.com/</option>
<option>http://www.yahoo.com/</option>
</select>

Not too sure exactly what you're doing, but I hope that helps.

No, that doesn't help.
Thats more of what you would see in a form.
I mean a drop-down menu like the kind AEF or VB has. Toungue
Although VB uses Onclick();
Have a look at my favourite script website...
http://dynamicdrive.com/dynamicindex1/index.html
(2008-10-26, 12:02 AM)MyBB Workshop* Wrote: [ -> ]Have a look at my favourite script website...
http://dynamicdrive.com/dynamicindex1/index.html
Sweet! Found what I needed! Thanks! Cool
No problem =]
I would bookmark that site for any future requests. It's gauranteed whatever your looking for will be there...