I have added the version 5.14 of the table bound menu to a website that I am building and have noticed that it is not displaying correctly in Firefox 0.8 and Opera 7.11.
I suspect that it is something I have done rather than the menu.
The menu displays perfectly in IE 6.1.
The site can be viewed at : http://d8199.i44.quadrahosting.com.au/default_blank.asp
Thanks in advance,
Stuart Cargin
			
			
									
						
										
						Submenu font size issues with Firefox 0.8 and Opera 7.11
Place the script under the <body> tag:
maz
			
			
									
						
										
						Code: Select all
<SCRIPT language=JavaScript src="milonic_src.js" type=text/javascript></SCRIPT>	
	<script	language=JavaScript>
	if(ns4)_d.write("<scr"+"ipt language=JavaScript src=mmenuns4.js><\/scr"+"ipt>");		
	  else _d.write("<scr"+"ipt language=JavaScript src=mmenudom.js><\/scr"+"ipt>"); 
	</script>
	<SCRIPT language=JavaScript src="menu_dataRapidMap.js" type=text/javascript></SCRIPT>
As far as I can see my style names seem to be correct. It has been suggested that the issue may be related to combining the menu in a table cell with rollover images??
I even changed the reference to the style name in page itself to menuStyle and added the padding code to the menu_data.js file. This made no difference and I have since changed it back.
Thanks,
Stuart
			
			
									
						
										
						I even changed the reference to the style name in page itself to menuStyle and added the padding code to the menu_data.js file. This made no difference and I have since changed it back.
Thanks,
Stuart
Thanks for the clarification.
I now see the problem. Much better cross-browser operation is frequently achieved by specifying font sizes in px rather than pt. Try changing fontsize="12"; to fontsize="12px"; (or whatever - switching to px may require a little adjustment).
Also, any numeric-only parameter does not require the "", so fontsize="12"; would actually be fontsize=12;, etc.
			
			
									
						
							I now see the problem. Much better cross-browser operation is frequently achieved by specifying font sizes in px rather than pt. Try changing fontsize="12"; to fontsize="12px"; (or whatever - switching to px may require a little adjustment).
Also, any numeric-only parameter does not require the "", so fontsize="12"; would actually be fontsize=12;, etc.
John
			
						





