2024-12-17, 06:32 AM
(This post was last modified: 2024-12-17, 06:33 AM by Jamestorn. Edited 1 time in total.)
Thanks for this guys. I only wanted the black bar gone. I still like to have the time stamp and the chapter number is nice too. This is the only line needed to remove the black bar.
.chapterThumbTextContainer {
background: rgba(0,0,0,0);
}
The last digit sets the transparency. 1 is solid black and 0 is clear.
This is all my customization if you want to declutter a bit more
.chapterThumbTextContainer {
background: rgba(0,0,0,0);
}
The last digit sets the transparency. 1 is solid black and 0 is clear.
This is all my customization if you want to declutter a bit more
Code:
/* This removes (in order) tags, video file, audio type, studios and genres from displaying. It also removes the black bar when scrolling*/
.itemTags {
display: none !important;
}
.selectVideoContainer {
display: none !important;
}
.selectAudioContainer {
display: none !important;
}
.studiosGroup {
display: none !important;
}
.genresGroup {
display: none !important;
}
.chapterThumbTextContainer {
background: rgba(0,0,0,0);
}