Hi,
I like to have the album cover larger / more in the center of the web ui ?
Is there a way to change it ?
Thank you for information
Ruesch
Hi,
I like to have the album cover larger / more in the center of the web ui ?
Is there a way to change it ?
Thank you for information
Ruesch
I think you can modify the CSS style, which changes the display. For instance, in /volumio/http/www/styles/app-cf915220c8.css change:
#playbackPanelWrapper #leftPanel,#playbackPanelWrapper #rightPanel{float:left;width:33.3333%}
#playbackPanelWrapper #centerPanel{float:left;width:33.3333%}
#trackInfo img{width:100%;margin:10px auto;max-width:400px;max-height:400px;border:10px solid rgba(0,0,0,.5)}
to:
#playbackPanelWrapper #leftPanel,#playbackPanelWrapper #rightPanel{float:left;width:25%}
#playbackPanelWrapper #centerPanel{float:left;width:50%}
#trackInfo img{width:100%;margin:10px auto;max-width:500px;max-height:500px;border:10px solid rgba(0,0,0,.5)}
But I don’t know if this filename is static or specific for my system, or whether it’s dynamically generated; and maybe there’s something else that needs to be changed to alter the actual size of downloaded images…
If you’re using Firefox you could write a Greasemonkey script that tweaks the Volumio page exactly the way you want it.