Hide navLink

Dynamic

Well-known member
Hi everyone,

So to hide a navTab when it is not selected

Code:
.navTabs .navTab.members.PopupClosed
{
    display: none;
}

Cool - I get that.

Now, I can also hide the navTab when the popup is selected.

Code:
.navTabs .navTab.members
{
    display: none;
}

The only problem is the secondary navigation menu also gets removed.

Is there a way for the navLink to remain hidden, but the secondary navigation of the navLink to appear when the user is on the page of the tab?

So even though they may be on a page within the members link, the navLink "members" will remain hidden, whilst the secondary navigation will be shown.

Any help would be great :)

Thanks.
 
Hi everyone,

So to hide a navTab when it is not selected

Code:
.navTabs .navTab.members.PopupClosed
{
    display: none;
}

Cool - I get that.

Now, I can also hide the navTab when the popup is selected.

Code:
.navTabs .navTab.members
{
    display: none;
}

The only problem is the secondary navigation menu also gets removed.

Is there a way for the navLink to remain hidden, but the secondary navigation of the navLink to appear when the user is on the page of the tab?

So even though they may be on a page within the members link, the navLink "members" will remain hidden, whilst the secondary navigation will be shown.

Any help would be great :)

Thanks.

If i understood you correctly have you tried the following

Code:
.navTabs .navTab.members .navLink
{
    display: none;
}
 
Top Bottom