Wrap long menu item titles and Show tooltips on hover do nothing

Dec 10, 2019

I have selected Wrap long menu items titles and Show tooltips on hover in the advanced menu options but in HTML 5 it does nothing?

6 Replies
Seth Ozen

OK. This is a bit involved. I strongly recommend using a code editor such as, VS Code.

Open main.min.css in Storyline output\html5\lib\stylesheets and set white-space to wrap.

.is-desktop .resources .resources-list a {
display: block;
padding: .5em;
white-space: wrap;
overflow-x: visible;
text-overflow: ellipsis

If you want to change the hover color in the Resources tab, open output.min.css in Storyline output\html5\data\css and change the hover background to your liking using the hex color code.

body:not(.is-touchable-tablet) .cs-pxabnsnfns00001100101 .resources .resources-list a:hover {
background: #ffff00;

This discussion is closed. You can start a new discussion or contact Articulate Support.