How to create a drop down menu on .ASPX pages?
Return to Recent Questions
Q:
Does Deluxe-Menu work on .ASPX pages.� Actually, I have got them
to but the icons don�t appear. This may just be a path issue but I
don�t see anything on your site saying that it will work with ASPX.
Please let me know.
A:
Deluxe Menu works fine on .ASPX pages.
You should install Deluxe Menu on the .aspx page in the same way as
you install it on the html page.
You can use additional parameters to make menu paths absolute:
var pathPrefix_img = "http://domain.com/images/";
var pathPrefix_link = "http://domain.com/pages/";
These parameters allow to make images and links paths absolute.
For example:
var pathPrefix_img = "http://domain.com/images/";
var pathPrefix_link = "http://domain.com/pages/";
var menuItems = [
["text", "index.html", "icon1.gif", "icon2.gif"],
];
So, link path will be look so:
http://domain.com/pages/index.html
Images paths will be look so:
http://domain.com/images/icon1.gif
http://domain.com/images/icon2.gif
Please, try to use these parameters.
Return to Recent Questions
|