I want to get my text within a single float menu item to be on a two lines
Return to Recent Questions
Q:
I am trying to get my text within a single menu item to have text
on two lines as opposed to be all on one line. For example, I
currently have CumberlandHeadElementary School all on one line of a
menu. I would like to have Cumberland Head on one line and
Elementary School on a line below Cumberland Head. Hope this makes
some sense. Thanks for your help.
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
|