MyBB Community Forums

Full Version: My Dropdown menu's aren't working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Okay so, I downloaded a recent theme for my website but for some reason the header_welcomeblock_member drop down menus on it aren't working at all? and the link for the drop down is just index.php/# 

My skills in CSS/HTML aren't great so for the life of me I cannot figure out why it's not working? I've tried using a different browser and clearing my cache on chrome as another thread said that might help. But so far it's not working! 

Any help would be appreciated, code is linked below.

<span class="float_right">

<a class="header_avatar" href="{$mybb->settings['bburl']}/usercp.php?action=avatar"> <img src="{$mybb->user['avatar']}" height="25px" width="25px" align="center" class="miniav"/></a>

&nbsp;

<span class="dropdown">
<a data-toggle="dropdown" href="#"> 
  <span style="color:#fff;">{$mybb->user['username']} <i style="font-size: 9px;" class="fa fa-chevron-down fa-fw"></i></span></a> &nbsp; 
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">  
<li role="presentation"><a href="{$mybb->settings['bburl']}/usercp.php"> User Panel </a></li>
<li role="presentation"><a href="{$mybb->settings['bburl']}/usercp.php?action=profile"> Edit Profile </a></li>
<li role="presentation"><a href="{$mybb->settings['bburl']}/usercp.php?action=options"> Edit Options </a></li>
<li role="presentation"><a href="{$mybb->settings['bburl']}/usercp.php?action=editsig"> Edit Signature </a></li>
<li role="presentation"><a href="{$mybb->settings['bburl']}/usercp.php?action=editlists"> Friends List </a></li>
<li role="presentation">
<a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}"> Sign Out </a>
</li> 
{$modcplink}
{$admincplink}
 </ul>
</a> 
</span>

&nbsp;

<span class="dropdown">
<a class="white" data-toggle="dropdown" href="#"> 
 <span style="color:#fff;">Messages  <i style="font-size: 9px;" class="fa fa-chevron-down fa-fw"></i></span></a> 
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">  
<li role="presentation"><a href="private.php?fid=1"> Inbox  </a></li> 
<li role="presentation"><a href="private.php?action=send"> Compose  </a></li>
<li role="presentation"><a href="private.php?fid=2"> Sent Items </a></li>
<li role="presentation"><a href="private.php?action=tracking"> Tracking </a></li>
</ul>
</a> 
</span>

&nbsp;

<a title="Unread Messages" style="margin-top: 5px;" href="{$mybb->settings['bburl']}/private.php" id="pm_notification">  {$mybb->user['pms_unread']}  </a> 

&nbsp; 
</span>

Theme we downloaded: https://community.mybb.com/mods.php?acti...6&bid=1863
Seems to be a trouble with javascript.
Can you give an url plz ?
http://lazdisco.x10host.com/forum/index.php there you go, the test theme I think is set to default, if not lemme know and I'll force it for all users
Can you provide me a test account ?
Sent Via PM.
Hopefully we'll be able to figure this out =)
Well, you have a lot of 404 errors, particularly bootstrap.min.js, jquery.tipsy.js
I think you have a trouble in your headers, I can see :
<script type="text/javascript" src="images/revolution/bootstrap.min.js"></script>
<script type="text/javascript" src="images/revolution/jquery.tipsy.js"></script>

Correct that and it will be fine
Without sounding like a total moron... what do we need to correct it with? Been over 5 years since I studied js and assorted website coding
After doing some looking I saw that there were some missing scripts in the directory that they link to, yet even after reuploading them the problem remains.
We've fixed the issue, thanks for the help =)
Pages: 1 2