|
|
We want to set a specific width for each item on top level of the jump menu code
Return to Recent Questions
Q:
Actually, we figured out how to adjust the alignment of the
text. What we would like to do is set a specific width for each
item on the top level of the menu. Right now the width of the menu
is based on the length of the item in that hotspot. We would like
the width of each of those options to be the same.
A:
You should use individual item styles. For example:
var itemStyles = [
["itemWidth=123px"], //style 0
["itemWidth=150px"], //style 1
];
var menuItems = [
["Home","testlink.html", , , , , "0", , , ], //style 0
["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", , , "0", , , ], //style 0
["Text","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", , , "1", , , ], //style 1
Try that.
Return to Recent Questions
|