Hide Tabs on Form

Hello,

I am using fd.container('Tabs4').tabs[3].disabled = true; and

.tabset .disabled{
display: none; /* hide disabled tabs */
}

to hide tabs but it is no longer working. How can i hide tabs when the form is loaded?

Thank you

Hello @jamesmitchell,

Please try adding !important to the CSS style:

.tabset .disabled{
    display: none !important; /* hide disabled tabs */
}

That seeems to have worked!