Hello,
I'm having a time trying to clean up a mess. Viewing the forum homepage, the JS dropdown menus work fine. But when inside a thread, it seems that JS doesn't work at all. I've looked at the sources of the pages and found a difference related to the CSS settings.
From the main page that works:
PHP Code:
<link rel="stylesheet" type="text/css" href="http://www.steelsoldiers.com/clientscript/vbulletin_important.css?v=386" />
<!-- / CSS Stylesheet -->
<script type="text/javascript" src="http://www.steelsoldiers.com/clientscript/yui/yahoo-dom-event/yahoo-dom-event.js?v=386"></script>
<script type="text/javascript" src="http://www.steelsoldiers.com/clientscript/yui/connection/connection-min.js?v=386"></script>
<script type="text/javascript">
<!--
var SESSIONURL = "";
var SECURITYTOKEN = "1321285999-a572b3981598d4bb6bb14e22f54c0825e0095a80";
var IMGDIR_MISC = "http://test.steelsoldiers.com/images/misc";
var vb_disable_ajax = parseInt("0", 10);
// -->
</script>
<script type="text/javascript" src="http://www.steelsoldiers.com/clientscript/vbulletin_global.js?v=386"></script>
<script type="text/javascript" src="http://www.steelsoldiers.com/clientscript/vbulletin_menu.js?v=386"></script>
From source of a displayed thread that JS doesn't work in:
PHP Code:
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_important.css?v=386" />
<!-- / CSS Stylesheet -->
<script type="text/javascript" src="clientscript/yui/yahoo-dom-event/yahoo-dom-event.js?v=386"></script>
<script type="text/javascript" src="clientscript/yui/connection/connection-min.js?v=386"></script>
<script type="text/javascript">
<!--
var SESSIONURL = "";
var SECURITYTOKEN = "1321286040-71721bc72cd47589f19d40f0a1d95ea58f373c37";
var IMGDIR_MISC = "http://test.steelsoldiers.com/images/misc";
var vb_disable_ajax = parseInt("0", 10);
// -->
</script>
<script type="text/javascript" src="clientscript/vbulletin_global.js?v=386"></script>
<script type="text/javascript" src="clientscript/vbulletin_menu.js?v=386"></script>
I'm not certain where this is contained at looking through the templates. I'd like to update the second to match the first hopefully to resolve the JS issues.