Click to See Complete Forum and Search --> : Urgent, pls. help me..


oceanmaid
09-24-2003, 09:46 PM
Please help..I'm encountering a problem. I got a script from javascript.internet.com on a navigation section called 'cascading menu'. The problem now is I wanna place those menus e.g, home, services, managements etc..onto the table of the same color, under the banner. I'm not really good in scripting and have problems understanding the script. Please help..:( For you to have a better understanding on my problem,this is the page 'problem' page - http://www.oceanbulk.com.sg/index00.html

Fang
09-25-2003, 02:46 AM
Add the green code to your page:


// document width
var theWidth;
if (window.innerWidth)
theWidth=window.innerWidth;
else if (document.documentElement && document.documentElement.clientWidth)
theWidth=document.documentElement.clientWidth;
else if (document.body)
theWidth=document.body.clientWidth;
var MenuCentring=parseInt(theWidth/2-240);


with(menu[0][0]) {
ref.left = x+MenuCentring;
ref.top = y+108;
ref.visibility = 'visible';
}
}