Okay, in the index.template.php:
Find the part for the quicklinks. There's a comment above the if statement and an opening and closing bracket:
// Show the quicklinks?
if($context['user']['is_logged']
{
all kinds of crap
}
// End the tab section
etc...
Replace all that above the // End the tab section with this:
// How about the [quick links] button?
if ($context['user']['is_logged'])
{
echo '
<td align="center" valign="middle"><a class="mainnav-link" href="', $scripturl, '#quicklinks" id="idquicklinks" rel="quicklinks">', $txt['quick_links'], ' <img src="', $settings['images_url'], '/search_down.gif" width="10" height="10" alt="^" /></a>
<!--Do not remove outer most DIV tag with id="quicklinks"-->
<div id="quicklinks" style="width: 150px;visibility:hidden;" class="drop-down">
<table width="100%" border="0" cellpadding="0" cellspacing="1">
<tr>
<td class="catbg" height="20" align="left" valign="middle">' . $txt['quick_links'] . '</td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=recent">', $txt[214], '</a></td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=markasread;sa=all;sesc=', $context['session_id'], '">', $txt['board_markread'], '</a></td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=who">', $txt['whos_online'], '</a></td>
</tr>
<tr>
<td class="catbg" height="20" align="left" valign="middle">', $txt['user_settings'], '</td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=profile">', $txt['view_profile'], '</a></td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=profile;u=', $context['user']['id'], ';sa=account">', $txt['account_settings'], '</a></td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=profile;u=', $context['user']['id'], ';sa=forumProfile">', $txt['edit_profile'], '</a></td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=profile;u=', $context['user']['id'], ';sa=theme">', $txt['preferences'], '</a></td>
</tr>
<tr>
<td class="catbg" height="20" align="left" valign="middle">', $txt['miscellaneous'], '</td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=unread">', $txt['qlunread_posts'], '</a></td>
</tr>
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=unreadreplies">', $txt['qlunread_replies'], '</a></td>
</tr>
</table>
</div>
<script type="text/javascript">
dropdowncontent.init("idquicklinks", "left-bottom", 200, "click")
</script>
</td>';
}
Now, back in the top of the file, before the <body> tag, you should see a javascript. This is what you want it to be:
//This is for the pop menus
echo '<script language="javascript" type="text/javascript" src="', $settings['theme_url'], '/dropdown.js"></script>';
echo '
</head>
<body>';
I think that should do it.
The real hell is your life gone wrong.