You would need this code to get your separatorimage in the horizontal or vertical menu
Code: Select all
aI("text=Menu Samples;separatorimage=arrow.gif;separatorsize=1;showmenu=Samples;");
The separatorsize if set to 1 will just give you a line in the menu no matter which orientation. In the horizontal the menu reads the 1 as the width of the image, in the vertical it reads it as the height of the image. To show the image the separatorsize needs to be the width of the image in a horizontal menu: the arrow image is 5 px wide so set separatorsize to 5 it will be that width and will repeat y the height of the horizontal menu. It is 7 px high so in the vertical you'd specify separatorsize=7; and it will show the full arrow and repeat x across the menu.
separatorheight is for the horizontal menu and separatorwidth is for vertical and would be used for the following:
If you want to specify a different height in the horizontal, making the separator, [image or line] not go the complete height of the menu, then you would use separatorheight= and a number less than the menu height. If you want to specify a width in vertical that is less than the menuwidth use separatorwidth= and a number less than the vertical menu width.
Hope that helps.
Ruth