Status
Not open for further replies.

H0VA

Active Member
125
2009
0
0
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.
Back
Top