2024-07-28, 06:12 PM
(2024-07-28, 05:50 PM)ajits Wrote: The music time line including Play, Stop, Pause, Shuffle and volume button is not visible once you stop the music playing. This has to be visible at all times. Requesting to make changes that this is visible all the time
If you put this in your custom CSS box, it'll keep the Now Playing bar visible permanently
Code:
.nowPlayingBar-hidden {
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
display: block !important;
visibility: visible !important;
opacity: 1 !important;
height: auto !important;
transition: none !important;
position: fixed !important;
bottom: 4em !important;
left: 0 !important;
right: 0 !important;
z-index: 1000 !important;
}