|
I have found the solution for anyone using Button Generator Dot Com.......you will have to open the file menuscript.js in notepad and make a couple of small changes to the javascript, then save, then upload to your server, all should work fine after that!
Just find the code below in the script and add the +'px' in the 2 places.
You need to correct the javascript file menuscript.js by inserting +'px' as shown below
// MOVE OBJECT TO COORDINATE
function moveObjectTo(objectID,x,y) {
var el = getElement(objectID);
el.style.left = x+'px';
el.style.top = y+'px';
|