Can I put a break line to obtain the item written in several lines in menu sample?
Return to Recent Questions
Q:
I was not able to resolve seeing FAQ, is the following one:
If an item of a menu is very large, as "please, select the color you
prefer for the background of the image of the photo of your san", as
can I put a break line to obtain the item written in two or more
lines?, as, for example:
please, select the color you
prefer for the background of
the image of the photo of your son
only an item, anly a link, but three lines in the item.
A:
Try to set this parameter:
var noWrap=0;
If it is not suitable for you, try to use <br> tags in the item text, for example:
var menuItems = [
["please, select the color you<br>prefer for the background
of<br>the image of the photo of your son",,,],
];
Return to Recent Questions
|