2024-08-19, 03:45 AM
(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
}