Recent Questions
Q: For example if you use the Growing Goodness menu located under Media Categories the first category is Agriculture w/ a sub category "Community Supported (CSA)" it is the sub category that is an active link. Is it possible to have only the active link "Community Supported (CSA) underlined and not Agriculture? And the same for all the other active links in this menu, all that have hyperlinks assigned to them. 
A: You can write your links in the following way: 
 ["Channels","", , , , , , , , ], 
  ["|<a class='menu' href='http://growinggoodness.com/callingfromthecoast.htm'>Eco-Friendly</a>","", , , , "_self", , , , ],
  ["|<a class='menu' href='http://growinggoodness.com'>Farmers Market</a>","", , , , "_", , , , ], 
 ["Media Categories","", , , , , , , , ], 
  ["|Agriculture","", , , , , , , , ], 
    ["||<a class='menu' href='http://growinggoodness.com/csa.htm'>Community Supported (CSA)</a>","", , , , "_self", , , , ], 
    ["||Movie Trailers","", , , , , , , , ], 
    ["|||<a class='menu' href='http://growinggoodness.com/farmboymovie.htm'>Farmboy</a>","", , , , "_self", , , , ], 
    ["|||<a class='menu' href='http://growinggoodness.com/strongrootsfragilefarms.htm'>Strong Roots, Fragile Farms</a>","", , , , "_self", , ,, ], 
    ["|||<a class='menu' href='http://growinggoodness.com/therealdirtonfarmerjohn.htm'>The Real Dirt On Farmer John</a>","", , , , "_self", , ,, ], 
And create a style: 
A.menu { 
color: #FFF; 
text-decoration: none;} 
A.menu:hover { 
color: #FFF; 
text-decoration: underline;} 
Q: I have built out a vertical menu that fits within a fixed size box. The items of the menus are all fixed size images. However when increasing the font size in the browser under View -> Text Size the spacing between the images increases and the html java menu no longer fits within the fixed space. I did have CSS padding-top in the html java menu that I took out but it still does not fit in the space. I took out but it still does not fit in the space.
 Have you run into this before or do you know of a fix for this? 
A:  You've installed the menu in DIV with absolute position (boxNav). Thatis why you have such behaviour.
Try to use relative position for this DIV.
Q: Is there a way to center floatable menus horizontally on a page? 
 I used to use absolutePos=0, and all of my menus were centered ok, but when I tried floatable=1 I found that I had to change toabsolutePos=1 to get the menu to float, and this messed up my centering. Since I have multiple menus of different widths, I'd rather not have to hard-code the menu width, but please let me know if there's a better way.
 
A: Notice, when you use floatable menu you can't use relative menu position. 
So, if you use 
  var absolutePos = 0; 
and to center the menu you use <p> or <div> with the center alignment your menu won't float. 
To center your floatable menu you should set absolute coordinates. 
Q: I recently upgraded to the new version. Now I am having a problem with the javascript navigation width. I have the main menu set it 98% using the Deluxe Tuner but it only shows it on my web page at about 25%. I can’t seem to get it to change. I have opened the js file and it is showing 98% but still showing at 25% on web page. I am using a floatable horizontal menu with submenus. Can you think of anywhere else I need to check/check a width setting? 
A: 	Check that you haven't set itemWidth parameter in your styles, for example:
  var itemStyles = [
 ["itemWidth=150px"],
];