http://www.dharma.org/newsite/fr_financial_fees.html
the username is dharma password metta
I am having trouble adding a second menu. I would like to ad another menu to the page so there are two on this page but the second one doesn't seem to be showing up. Does anyone out there have any solutions for this? Also, there seems to be a bug in firefox/mozilla. when I scroll down the page and then go the acess the menu the submenu pops up subsancialy lower than where it should be. Any help would be much apreciated.
thanks, Jazmine
2 menus on the page and mozilla/firefox bug
Recent updates have been almost entirely Mozilla/Firefox related. See http://milonic.com/menuvinfo.php and scroll down to your 5.66 version. A LOT of updates here, and quite a few in FF as well (now at 1.5.0.4).
John
Hi,
I've deleted the other message since this is the same topic and it is much easier for searching if all are kept together.
As to having two menus, there is no problem doing that but on your page, I can't find the second menu.
Your paths are wrong. I've tried all kinds of combinations to get to that menus-sub/ etc.
Also, you only need to call the milonic base files once. So, let's say you wanted two menus, one horizontal, one vertical. You could make two menu_data.js files one for each, and you would name them different, for example: horzontal_data.js and vertical_data.js. Your calls would then be
Hope this helps. Keep in mind, if they are the same menus, you cannot name them the same. So, if the horizontal menu has a 'main menu' then the vertical would need to be named say 'main menuV' or something.
Ruth
I've deleted the other message since this is the same topic and it is much easier for searching if all are kept together.
As to having two menus, there is no problem doing that but on your page, I can't find the second menu.
Your paths are wrong. I've tried all kinds of combinations to get to that menus-sub/ etc.
Also, you only need to call the milonic base files once. So, let's say you wanted two menus, one horizontal, one vertical. You could make two menu_data.js files one for each, and you would name them different, for example: horzontal_data.js and vertical_data.js. Your calls would then be
Code: Select all
<SCRIPT language=JavaScript src="menus/milonic_src.js" type=text/javascript></SCRIPT>
<script language=JavaScript>
if(ns4)_d.write("<scr"+"ipt language=JavaScript src=menus/mmenuns4.js><\/scr"+"ipt>");
else _d.write("<scr"+"ipt language=JavaScript src=menus/mmenudom.js><\/scr"+"ipt>");
</script>
<SCRIPT language=JavaScript src="menus/horizontal_data.js" type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript src="menus/vertical_data.js" type=text/javascript></SCRIPT>
Ruth