Replies: 3 comments 2 replies
-
Hey @krisMG21! I'm here to help you with any bugs, questions, or contributions. Let's tackle this together! To display only tab icons in the sidebar, you can modify the CSS to hide the tab labels and ensure that only the icons are visible. Here is a CSS snippet that you can use: #tabbrowser-tabs .tabbrowser-tab .tab-content {
display: flex;
align-content: center;
justify-content: center;
padding: 0 !important;
}
#tabbrowser-tabs .tabbrowser-tab .tab-label-container {
display: none !important;
} Additionally, you can use the following CSS for a more compact tab display: @container tab-container (max-width: 44px) {
.tab-label-container {
display: none !important;
}
.tab-content {
justify-content: space-around !important;
}
.tab-close-button {
display: none !important;
}
} This will hide the tab labels and ensure that only the tab icons are displayed in the sidebar [1][2]. Alternatively, you can check the Zen Browser's settings for a preference that allows toggling between icon-only and full tab display. This is controlled by the checkbox with the ID |
Beta Was this translation helpful? Give feedback.
-
Wow, the update was quick. Everything back to normal, I said nothing xd |
Beta Was this translation helpful? Give feedback.
-
@dosu how do you modify the css? step by step? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have my tabs as a side bar, and previously they were very compact, only displaying the icon. I don't know if it's because an update or I changed it accidentally, but I cannot find a way to change it back
Beta Was this translation helpful? Give feedback.
All reactions