Jump to content

Remove Music Backdrops?


tomnjerry74
Go to solution Solved by Happy2Play,

Recommended Posts

tomnjerry74

Hello,

I must have some css somewhere in my long list that removes the backdrops when browsing music artists, albums, songs, etc.

The problem is, the gradient overlay is still present and I can't figure out what element it is for the life of me 😅. I just want the background to be plain; the same value I have for the --theme-background variable.

Does anyone know how to get rid of the overlays/gradients?

Edit: The rule I currently have sets ".backdropImage" display to none.

Edited by tomnjerry74
Link to comment
Share on other sites

tomnjerry74
19 minutes ago, Happy2Play said:

You mean the item CSS overriding theme CSS do to "!important"?

css.thumb.jpg.883d646c305cc2a021620db4af6a9ea1.jpg

Okay, yeah that's the one. Thank you.

My custom css isn't overriding it, even with !important tags :(.

.itemBackgroundContainer.withBackdrop
{
    background:none!important
}

 

Link to comment
Share on other sites

  • Solution
Happy2Play

If you look at your console you will see the order as that custom css is still below the item css.

It is not important enough to override existing code so adding div changes the targeting a little.  

div.itemBackgroundContainer.withBackdrop {
    background: none!important;
}

 

  • Like 1
Link to comment
Share on other sites

tomnjerry74
1 minute ago, Happy2Play said:

If you look at your console you will see the order as that custom css is still below the item css.

It is not important enough to override existing code so adding div changes the targeting a little.  


div.itemBackgroundContainer.withBackdrop {
    background: none!important;
}

 

Wow, you never cease to amaze.. Thank you for both the working code and the lesson! Neat trick!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...