I'm looking at the menu now, it appears that this configuration item:
Code:
var bCOLOR = "black" // main nav border color
is not actually a border in the strict html or css sense, rather a background color. If you set that to transparent and set this:
Code:
var bSIZE = 1; // main nav border size
to 10, you will have pretty much what you say you are after. However, you will lose the nice 1px solid black border for the main navitems which is the default we just changed. To get something like that back, use html in the text for these entries, ex:
Code:
addMainItem("http://www.dynamicdrive.com/","<div style='padding:7px 0;border:1px solid black;height:100%;width:80px;'>Home</div>",80,"center","","",0,0,"","#ffeeee","#ffeecc","#000066","#660066");
and changing:
Code:
var vtOFFSET = 0; // main nav vertical text offset (+/- pixels from middle)
to 4
Bookmarks