PDA

View Full Version : DDM works fine in IE7 but not in Firefox or IE6


mindful
03-30-2008, 01:43 AM
:confused: Hi There,
I am setting up UDM4 for the first time and have it working great in IE7. I tested the site with IE6 and Firefox and it does not behave as expected:


In IE6 the 2nd level DDM expand across the whole page and covers the 1st level DDM.

In Firefox, the menus don't drop down at all.

Any advice would be great!

Check out the current site at www.omstudio.ca (http://www.omstudio.ca)

Alan

Admin
03-31-2008, 02:51 AM
Looks like the HTML for pulling in the scripts has a bad path...


<!-- ULTIMATE DROP DOWN MENU Version 4.5 by Brothercake -->
<!-- http://www.udm4.com/ -->
<script type="text/javascript" src="udm-resources/udm-custom.js"></script>
<script type="text/javascript" src="udm-resources/udm-control.js"></script>
<script type="text/javascript" src="udm-resources/udm-style.js"></script>

</head>

<body>
<script type="text/javascript" src="udm-resources/udm-dom.js"></script>
<script type="text/javascript" src="udm-resources/udm-mod-keyboard.js"></script>

Should be:


<!-- ULTIMATE DROP DOWN MENU Version 4.5 by Brothercake -->
<!-- http://www.udm4.com/ -->
<script type="text/javascript" src="/udm-resources/udm-custom.js"></script>
<script type="text/javascript" src="/udm-resources/udm-control.js"></script>
<script type="text/javascript" src="/udm-resources/udm-style.js"></script>

</head>

<body>
<script type="text/javascript" src="/udm-resources/udm-dom.js"></script>

<script type="text/javascript" src="/udm-resources/udm-mod-keyboard.js"></script>

mindful
04-01-2008, 11:37 PM
I did as you suggested and no difference in Firefox. This took a little jigging since I use web templates and set them up in their own directory. I also use Frontpage which seem to like things in a certainway or it behaves strangely. Any mor ideas? I could send the custom js file.