http://www.oandcenterprises.com/fci/test.php
These are what my menus look like, Instead having to scroll to see the whole menu how would I make it so that I can start the menu on a new line.
Menus that start on a new line http://www.oandcenterprises.c
Split up your menu at some convenient point, and then build a second style definition that places the second half of the menu below the first. An easy way to do that is to have the system make a copy of your existing style by using subStyle=new copyOf(menuStyle);, and then adding only the lines that need to be changed; e.g., subStyle.offbgcolor="#ff00ff";
subStyle.offcolor="#ffffff";
subStyle.onbgcolor="#ffffff";
subStyle.oncolor="#ff00ff"; [thank you, Ruth!]
This is an example only - change what you need to get the positioning you want. This method saves having to write the entire style definition all over again.
subStyle.offcolor="#ffffff";
subStyle.onbgcolor="#ffffff";
subStyle.oncolor="#ff00ff"; [thank you, Ruth!]
This is an example only - change what you need to get the positioning you want. This method saves having to write the entire style definition all over again.
John
split menus
The only problem with that solution is that these menus are database driven.