Yesterday, 05:13 PM
(This post was last modified: Yesterday, 05:15 PM by Kiekan. Edited 1 time in total.)
(2024-08-19, 03:45 AM)xiNe Wrote:(2024-08-18, 12:52 PM)Ted Hinklater Wrote:(2024-08-18, 12:35 PM)xiNe Wrote: is it possible to enable the backdrop ONLY in the movie detail page?
backdrop everywhere is kinda annoying...but i counldn't figure out a way to achieve it
You can add this to your CSS box after your @import line(s)
Code:.itemsContainer.padded-left::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-size: cover;
background-color: #626262 !important;
opacity: 1;
z-index: -1;
background-attachment: fixed;
}
thanks. finally I found below way to hide it;
.detailPageSecondaryContainer {
background-clip: text
}
It looks like this is no longer working on Jellyfin 10.11.X.
For reference, I have the import CSS formatted as such:
Code:
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
.detailPageSecondaryContainer {
background-clip: text
}Is there any other way to only show the backdrops on the movie/show detail pages?


