Results 1 to 2 of 2

Thread: CSS Menu

  1. #1
    Join Date
    Aug 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default CSS Menu

    http://www.dynamicdrive.com/dynamici...roptabmenu.htm

    How do I make the menus go up instead of down?

  2. #2
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    Find this part in dropdowntabs.js
    Code:
    clearbrowseredge:function(obj, whichedge){
    		var edgeoffset=0
    		if (whichedge=="rightedge"){
    			var windowedge=this.ie && !window.opera? this.standardbody.scrollLeft+this.standardbody.clientWidth-15 : window.pageXOffset+window.innerWidth-15
    			this.dropmenuobj.contentmeasure=this.dropmenuobj.offsetWidth
    		if (windowedge-this.dropmenuobj.x < this.dropmenuobj.contentmeasure)  //move menu to the left?
    			edgeoffset=this.dropmenuobj.contentmeasure-obj.offsetWidth
    		}
    		else{
    			var topedge=this.ie && !window.opera? this.standardbody.scrollTop : window.pageYOffset
    			var windowedge=this.ie && !window.opera? this.standardbody.scrollTop+this.standardbody.clientHeight-15 : window.pageYOffset+window.innerHeight-18
    			this.dropmenuobj.contentmeasure=this.dropmenuobj.offsetHeight
    			//if (windowedge-this.dropmenuobj.y < this.dropmenuobj.contentmeasure){ //move up?
    				edgeoffset=this.dropmenuobj.contentmeasure+obj.offsetHeight
    				if ((this.dropmenuobj.y-topedge)<this.dropmenuobj.contentmeasure) //up no good either?
    					edgeoffset=this.dropmenuobj.y+obj.offsetHeight-topedge
    			//}
    			//this.dropmenuobj.firstlink.style.borderTopWidth=(edgeoffset==0)? 0 : "1px" //Add 1px top border to menu if dropping up
    		}
    		return edgeoffset
    	},
    Add highlighted (comment out).
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •