-
I suppose it's possible using userChrome or userContent.css |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hey @vavakado! I'm here to help you out with any bugs, questions, or contributions you might have. Let's tackle this together! To set a custom image as the tab sidebar background using #vertical-pinned-tabs-container {
background-image: url("path/to/your/image.png");
background-size: cover; /* Adjusts the image to cover the entire area */
background-repeat: no-repeat; /* Prevents the image from repeating */
background-position: center; /* Centers the image */
} Replace |
Beta Was this translation helpful? Give feedback.
-
It didn't work however I managed to change the background of the whole sidebar using this code #tabbrowser-tabs {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url("wallhaven-rd9jpq.png") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
} |
Beta Was this translation helpful? Give feedback.
It didn't work however I managed to change the background of the whole sidebar using this code