Hi,
I have an interesting problem with a DNN site I am developing for use by a UK government agency. The site is using the standard DNN menu system and looks fine when viewed from any 'normal' desktop.
However when viewed on a desktop machine from inside the government network the menu bar is completely missing.
I think the problem is that the client machines have some very restrictive security settings applied, one of which will prevent their browser from loading any <SCRIPT> tag which dosen't have a valid "type=text/javascript' attribute.
When I look at the source code of the homepage on the site I can see the following block of script tags near the top of the page:
<script src="/js/dnncore.js" type="text/javascript"></script><script src="/js/dnn.js"></script><script src="/js/dnn.xml.js"></script><script src="/js/dnn.dom.positioning.js"></script><script src="/js/dnn.xmlhttp.js"></script><script src="/js/dnn.controls.dnnmenu.js"></script>
The first script block has a type attribute, but the remaining ones (including the one that loads dnnmenu.js) do not.
No problem!, I thought I'll just find whatever template is being used to write this stuff out and add the type attribute myself manually, but with my limited DNN experience, I can't seem to track down where this is happening.
If anyone could give me any pointers as to how I could modify this it would be much appreciated.
Cheers
Steve