MyBB Community Forums

Full Version: Drop Down Menu's
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi has anyone added a drop down menu to theyre toplinks menu?

I am interested in adding a simple dropdown menu to include a number of external links so as not to clutter the toplink menu
its very easy.

put this in your toplicks section:

<form method="POST">
    <p><select name="dropdown" size="1">
        <option selected>Click To Expand</option>
        <option><a href="$settings[bburl]/member.php?action=login">Login/Logout</a></option>
        <option><a href="$settings[bburl]/usercp.php">User CP</a></option>
        <option><a href="$settings[bburl]/memberlist.php">Members List</a></option>
        <option><a href="$settings[bburl]/search.php">Search</a></option>
        <option><a href="$settings[bburl]/misc.php?action=help">Help</a></option>
        <option><a href="$settings[bburl]/calandar.php">Calandar</a></option>
        <option><a href="$settings[bburl]/index.php">Home</a></option>
    </select></p>
</form>
That wouldnt work actually, as you cant have <a> tags in an option box. However, adding some JavaScript makes it work fine Smile:

<form method="post">
    <select onchange="document.location = document.getElementById('dropdown').value;" id="dropdown" name="dropdown" size="1">
        <option selected>Click To Expand</option>
        <option value="$settings[bburl]/member.php?action=login">Login/Logout</option>
        <option value="$settings[bburl]/usercp.php">User CP</option>
        <option value="$settings[bburl]/memberlist.php">Members List</option>
        <option value="$settings[bburl]/search.php">Search</option>
        <option value="$settings[bburl]/misc.php?action=help">Help</option>
        <option value="$settings[bburl]/calandar.php">Calandar</option>
        <option value="$settings[bburl]/index.php">Home</option>
    </select>
</form>
Thanks James was just about to post that i couldnt get this to work.

What about a menu useing "onmouseover" ?
If you use onmouseover then no one will be able to go any where accept for the first option! lol!

Or do you mean customizing how it looks with mouseover?
yeah i meant to fix it i was just in such a hurry.