Tab is not hiding

Hey Plumsail,

I'm using the two snippets of code below to hide the second tab and show the first. The form seems to disabling the second tab but isn't completely hiding it from the user. (screenshot below)

/*Hides Disabled Tabs - [Wizard 3]*/
.tabset .disabled{
display: none;
}
//Shows tab 0 and hides tab 1
fd.container('Tab0').tabs[1].disabled = true;
fd.container('Tab0').tabs[0].disabled = false;
fd.container('Tab0').setTab(0);

Hi @DryChips,

Could you try changing the CSS style to the following?

.fd-form .tabset .disabled{
    display: none;
}

Hello, I'm afraid this hasn't worked! It's still showing the hidden tab name.

Hi @DryChips,

Sorry for the mishap. You need to add !important to the CSS:

.fd-form .tabset .disabled{
    display: none !important;
}