Inside the jqueryslidemenu.js file, near the top is (emphasis added):
Code:
//Specify full URL to down and right arrow images (23 is padding-right to add to top level LIs with drop downs):
var arrowimages={down:['downarrowclass', 'down.gif', 23], right:['rightarrowclass', 'right.gif']}
These filenames and paths, if relative, will be relative to the page that is using the script, not to the script. If you have, as you say, two or more pages on different paths that are using the script, you must use the absolute path to these images (the full URL), like:
Code:
http://www.mydomain.com/images/down.gif
Use the exact path in effect on your server.
An alternative is to use the network path. The equivalent network path for the above absolute path would be:
Note: No leading dots, these make the path relative. In a network path the first slash (/) represents the root of the domain.
Bookmarks