Well when i downloaded the menu that goes for the phpnuke everything went smoothly but now for some reson the thing wont work.
im stupid ,i know,but why doesnt the system generates a readme file how to install the bloody thing into nuke.
ive done it before but now it wont work.
after some reading on the forum i found a simular problem and the code was...
<SCRIPT language=JavaScript src="menu_data.js" type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript src="milonic_src.js" type=text/javascript></SCRIPT>
and i thought i had to be put in to the header so ive tried that.
errors i got was ..
_startM
mm style not defined
now why isnt this working..
[/quote]
How do i get this thing to work ?
Re: How do i get this thing to work ?
You haven't really given us anything to look at (and you didn't read far enough in that post you found), but those calls are backwards. Should be...john1000 wrote:<SCRIPT language=JavaScript src="menu_data.js" type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript src="milonic_src.js" type=text/javascript></SCRIPT>
Code: Select all
<SCRIPT language="Javascript" src="milonic_src.js" type="text/javascript"></SCRIPT>
<SCRIPT language="Javascript" src="menu_data.js" type="text/javascript"></SCRIPT>
John
Nope, sorry - "stupid" doesn't fly here. "New with the menu" is much betterjohn1000 wrote:oh yes your right about that,got it backwards also,well i said i was stupid....lol

I don't follow exactly what you're asking. What images?john1000 wrote:but last question..whats the best file to alter the images path ?
John
Actually the menu code does not show the images in the root, but rather in their own directory, as per this snip from 17...
Just change the image parameter to conform to where you place your images on your server.
Code: Select all
aI("text=Milonic;showmenu=Milonic;image=menuimages/penfold.gif;overimage=menuimages/penfold_over.gif;");
John