Find this in your jqueryslidemenu.js file on row 34:
Code:
menuleft=(this._offsets.left+menuleft+this._dimensions.subulw>$(window).width())? (this.istopheader? -this._dimensions.subulw+this._dimensions.w : -this._dimensions.w) : menuleft
and change the highlighted to this:
Code:
menuleft=(this._offsets.left+menuleft+this._dimensions.subulw>$('#myslidemenu').width())? (this.istopheader? -this._dimensions.subulw+this._dimensions.w : -this._dimensions.w) : menuleft
That will make the submenus open towards the left (like they would if the browser window was too small) if they are wider than the menu when opening to the right.
Bookmarks