In the css/clopay_style_page.css stylesheet around line 524 it has:
Code:
a span {
display: none;
}
Either get rid of it or add:
Code:
.menuitem.submenuheader span {
display: inline !important;
}
Once you do that, it will show up and you should probably revert this (around line 571 of the same file):
Code:
.glossymenu a.menuitem .statusicon{ /*CSS for icon image that gets dynamically added to headers*/
position: relative;
top: 5px;
right: 5px;
border: none;
}
to:
Code:
.glossymenu a.menuitem .statusicon{ /*CSS for icon image that gets dynamically added to headers*/
position: absolute;
top: 5px;
right: 5px;
border: none;
}
Bookmarks