Looking at the stylesheet.css
/main/views/themes/tastyigniter-orange/css/stylesheet.css
Find the following:
}
.menu-name {
display: block;
color:#444;
overflow: hidden;
text-overflow: ellipsis;
text-transform: uppercase;
white-space: nowrap;
}
And change to:
}
.menu-name {
display: block;
color:#444;
overflow: hidden;
text-overflow: ellipsis;
text-transform: uppercase;
white-space: normal;
}
So now the menu titles are not cut short, see the before and after images..

