Skip to content
WJunction - Webmaster Forum

Drop down menu's not working

Status
Not open for further replies.
http://warezkingdom.org/

login test
password test1
15htna.jpg


Drop down menu's arent working..=/
Notifications, fonts, etc.

Anyone know what could be causing this?
Thanks
 

9 comments

Replaced hear template with the default one for my style, I know the drop down worked before so the header isnt the prblem i dont think =[
 
Hello, After looking at your source the reason your drop down menu is not working is when you added the google analytics to your website and did a error in the javascript tags.

Code:
<script type="text/javascript">
<!--
    // Main vBulletin Javascript Initialization
    vBulletin_init();
//-->

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
try {
_uacct = "UA-10143129-1";
urchinTracker();
} catch(err) {}</script>


</script>
This is located at the bottom of your footer, change the following code to this:

Code:
<script type="text/javascript">
<!--
    // Main vBulletin Javascript Initialization
    vBulletin_init();
//-->
</script>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
try {
_uacct = "UA-10143129-1";
urchinTracker();
} catch(err) {}</script>

This should fix your issue.

Regards, Dominic
 
Hello, After looking at your source the reason your drop down menu is not working is when you added the google analytics to your website and did a error in the javascript tags.

Code:
<script type="text/javascript">
<!--
    // Main vBulletin Javascript Initialization
    vBulletin_init();
//-->

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
try {
_uacct = "UA-10143129-1";
urchinTracker();
} catch(err) {}</script>


</script>
This is located at the bottom of your footer, change the following code to this:

Code:
<script type="text/javascript">
<!--
    // Main vBulletin Javascript Initialization
    vBulletin_init();
//-->
</script>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
try {
_uacct = "UA-10143129-1";
urchinTracker();
} catch(err) {}</script>
This should fix your issue.

Regards, Dominic

Your a lifesaver.

Thanks man!
 
Status
Not open for further replies.

About the author

H
Active Member · Joined
125
Messages
0
Reactions
16
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom