Hi Vinay! I agree with ajfmrf, the page is confusing and needs a cleanup.
I think the problem is somehow related to z-index. Seems you have so many menupoints that a javascript is somehow generating a negative z-index for the last entries.
What i tried was to go in the ddsmoothmenu.js file and find this part
Code:
$headers.each(function(i){ //loop through each LI header
var $curobj=$(this).css({zIndex: 200-i}) //reference current LI header
var $subul=$(this).find('ul:eq(0)').css({display:'block'})
$subul.data('timers', {})
this._dimensions={w:this.offsetWidth, h:this.offsetHeight, subulw:$subul.outerWidth(), subulh:$subul.outerHeight()}
this.istopheader=$curobj.parents("ul").length==1? true : false //is top level header?
$subul.css({top:this.istopheader && setting.orientation!='v'? this._dimensions.h+"px" : 0})
$curobj.children("a:eq(0)").css(this.istopheader? {paddingRight: smoothmenu.arrowimages.down[2]} : {}).append( //add arrow images
'<img src="'+ (this.istopheader && setting.orientation!='v'? smoothmenu.arrowimages.down[1] : smoothmenu.arrowimages.right[1])
+'" class="' + (this.istopheader && setting.orientation!='v'? smoothmenu.arrowimages.down[0] : smoothmenu.arrowimages.right[0])
+ '" style="border:0;" />'
)
Changing the red z-index from 100 to 200 seems to do the trick.
I'm not sure if this is correct to do, or if it will create other problems, but you can try it and see if it works.
Bookmarks