Recent Questions
Q: My question is, the down arrows only show on the main page, how do I fix this.
A: Please, check images paths within data .js file.
For example, if you have data.js file here:
c:/website/data.js
and your images are stored here:
c:/website/images/
you should set image name so (for example):
var arrowImageMain = ["images/arrow1.gif", "images/arrow2.gif"];
If you use Tuner, you should save data .js file before you'll selectimages. When you save .js file it means that you set a root directoryfor the project, so Tuner can make all selected images with relativepaths.
Q: I've encountered a problem when I was creating my collapsible menu javascript. I got an error message when I was creating my menu as follows:
----------------------------------
There is the error in the data file. The menu won't be loaded correctly.
Line: 361
Char: 3
Code: 0
Message:']' f=F6rv=E4ntas
----------------------------------
A: You have errors in your data file now. It is not correctly to writeitems in the following way:
["||10"","", "", "", "", "", "", "", "", "", ],
["||11"","", "", "", "", "", "", "", "", "", ],
You should write:
["||10","", "", "", "", "", "", "", "", "", ],
["||11","", "", "", "", "", "", "", "", "", ],
Q: I have noticed an issue with the css menu dropdown. It does not drop down over the frame if a pdf is being displayed.It does something weird to the browser like shortens the main frame and displays above the menu.
Any Ideas?
A: Try to set the following parameter to overlap .pdf files:
var useIFRAME=1;
Q: How can I center my navigation java script menu bar within my HTML page? I have tried putting the script into a table that is centered. I have also changed the var menuWidth to 800px. The navigation bar is still right-justified instead of centered in both IE and Firefox/Mozilla.
A: Now you use absolute position for the java script menu bar:
var absolutePos=1;
var posX="0px";
var posY="0px";
You should set:
var absolutePos=0;