Ok, I got it fixed..............finally................lol
I had to comment out the following lines of the javascript...........
Code:
//if (ultags[t].parentNode.parentNode.id==menuids[i]){ //if this is a first level submenu
// ultags[t].style.left=ultags[t].parentNode.offsetWidth+"px"; //dynamically position first level submenus to be width of main menu item
//}
//else{ //else if this is a sub level submenu (ul)
// ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px"; //position menu to the right of menu item that activated it
//}
Then I had to hardcode the "left" attribute in the CSS in the ".sidebarmenu ul" and ".sidebarmenu ul li ul" sections to make it display properly due to the nature of the menus not being displayed at the time of the menu initilization.
Bookmarks