I fixed the problem!...the problem came through the referencing, because I was referening an external htm file for the menu items. so the correct refferencing is:
Code:
contentsource: ["container_id", '<%= Page.ResolveUrl("~/menu.htm")%>']
Now, the menu comes up in the login page, but the two arrows don't appear. here is the problem of referening again. but it's different now, cuz I need to make the refferences for the two arrows within the .js file and the above referening style doesn't work there.
This is what I need to fix:
Code:
//Specify full URL to down and right arrow images (23 is padding-right added to top level LIs with drop downs):
arrowimages: { down: ['downarrowclass', 'Images/down.gif', 23], right: ['rightarrowclass', 'Images/right.gif'] },
Any other page can reference these images, except the login page.
Bookmarks