As far as I can tell, you can simply edit the file here: http://www.lotatennis.com/jqueryslidemenu.css
and find this on line 50:
Code:
.jqueryslidemenu ul li ul li ul {
top:0;
}
Now edit that to look like this:
Code:
.jqueryslidemenu ul li ul li ul {
left:312px !important;
top:0;
}
That did it on my end... The width of the original submenu is 300px, but somewhere you're gaining an extra 12px of width... (probably padding, but I didn't dig too deep into it)
So adjusting it's position left to 312px will clear the original submenu and display it directly to the right side of it.
Bookmarks