Hiding Navigation Levels in SideNav Output

This forum is for all Flare issues related to the HTML5, WebHelp, WebHelp Plus, and Adobe Air Targets
Post Reply
jimmy_goldfarb
Jr. Propeller Head
Posts: 2
Joined: Wed Apr 18, 2012 4:56 am

Hiding Navigation Levels in SideNav Output

Post by jimmy_goldfarb »

I want to hide <h3> and <h4> levels in a side nav output. These navigation items appear in a javascript element that appears on the right of the screen.

However, I have not managed to find a way to hide them. They are displayed even if their mc-heading-level is set to 0. The skin does not have the equivalent of a "display: none." I've inspected the output and added the following styles to the master page head, but they have no effect:

<style>
li.tree-node.tree-node-leaf
{
display: none;
}

.vertical.menu.accordion-menu.is-accordion-submenu.nested
{
display: none;
}
</style>

What am I missing? I'd appreciate any help on this matter.
Post Reply