Customising "New Tab" #1317
Answered
by
eliandoran
LadyDuckland
asked this question in
Q&A / Support
-
Is there a way to change what the New Tab looks like? I looked around in settings / hidden notes but couldn't find a way to do it. To be clear the New Tab I'm referring to is when you open a new one it has my Workspaces but I was hoping to remove the search bar just to make things cleaner. |
Beta Was this translation helpful? Give feedback.
Answered by
eliandoran
Mar 2, 2025
Replies: 1 comment 1 reply
-
@LadyDuckland , the new tab pane is not meant to be customized, but in your case this can be achieved using custom CSS. Create a CSS code note with the label .empty-tab-search,
.note-detail-empty-results {
display: none;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
LadyDuckland
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@LadyDuckland , the new tab pane is not meant to be customized, but in your case this can be achieved using custom CSS.
Create a CSS code note with the label
#appCss
with the following content: