logogoo
youtube logo by mason20121981
Details
Authormason20121981
LicenseNo License
Categoryyoutube
Created
Updated
Size869 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name YouTube Custom Logo & Hide Sidebar
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Replace the YouTube logo and hide the sidebar button
@author Your Name
==/UserStyle== */
@-moz-document domain("youtube.com") {
/* Change the YouTube logo */
#logo-icon {
background: url('https://static.wikia.nocookie.net/logopedia/images/d/d8/YouTube_prototype.svg/revision/latest?cb=20230112011750') no-repeat center center !important;
background-size: contain !important;
width: 100px !important; /* Adjust width as needed */
height: 24px !important; /* Adjust height as needed */
}
#logo-icon svg {
display: none !important;
}
/* Hide the sidebar button */
#guide-button {
display: none !important;
}
}