How to hide unusable buttons from the tab bar? #9777
Unanswered
kashamalasha
asked this question in
Q&A
Replies: 1 comment
-
You can hide the Space selector, New tab button, and the plus-sign button using custom CSS in a userChrome.css file. Here’s how:
/* Hide the Space selector */
.zen-current-workspace-indicator,
vbox.zen-workspace-tabs-section.zen-current-workspace-indicator {
display: none !important;
}
/* Hide the New tab button (plus sign) */
#zen-create-new-button {
display: none !important;
}
/* Optionally, hide the workspace switcher button if present */
#zen-workspaces-button {
display: none !important;
}
Note: Hiding the Space selector may leave a small empty space due to layout constraints, and there’s no official setting to fully remove these elements without side effects. Disabling the New tab button is possible in Settings > Theme and experience, but full removal is most reliable with CSS. More details and selector updates are discussed here and here. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to hide the following:
How can I do it?
Beta Was this translation helpful? Give feedback.
All reactions