arrbee99 1712 Posted October 15, 2021 Posted October 15, 2021 It seems I can remove the huge album poster from the music page with this - /* Remove album poster from playlist*/ div.itemAction.cardContent.cardImageContainer.cardScalable {display: none !important;} and it doesn't move the progress bar / controls up, but...it also kills the media info you get at the bottom of movie (etc) detail pages. Any thoughts please on how to have the first without affecting the second ?
Happy2Play 9441 Posted October 16, 2021 Posted October 16, 2021 13 minutes ago, arrbee99 said: It seems I can remove the huge album poster from the music page with this - /* Remove album poster from playlist*/ div.itemAction.cardContent.cardImageContainer.cardScalable {display: none !important;} and it doesn't move the progress bar / controls up, but...it also kills the media info you get at the bottom of movie (etc) detail pages. Any thoughts please on how to have the first without affecting the second ? What are you trying to accomplish?
arrbee99 1712 Posted October 16, 2021 Author Posted October 16, 2021 I'm trying to get it like this - which that css does, but it also removes stuff like this (well it keeps the top three lines, but kills the stuff below so there's the three lines and nothing else) - which I want to keep
Happy2Play 9441 Posted October 16, 2021 Posted October 16, 2021 (edited) @arrbee99With your code you would do something like this. div.itemAction.cardContent.cardImageContainer.cardScalable:not(.mediaStreamPadder) {display: none;} But are you really wanting to remove all cardImageContainer or just on Now Playing? Edited October 16, 2021 by Happy2Play
arrbee99 1712 Posted October 16, 2021 Author Posted October 16, 2021 Probably just on Now Playing now that you mention it
Happy2Play 9441 Posted October 16, 2021 Posted October 16, 2021 3 minutes ago, arrbee99 said: Probably just on Now Playing now that you mention it So something like this. div.osdPosterContainer .cardImageContainer {display: none;} 1
arrbee99 1712 Posted October 16, 2021 Author Posted October 16, 2021 It is indeed something exactly like that. Thanks again !
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now