mchawk
Member
Posts: 161
Registered: 2-16-2006
Location: Germany
Member Is Offline
|
posted on 10-9-2007 at 10:23 PM
|
|
|
Q: Playlist- and NowPlaying-Background
I've got a question questing according the "now playing" and the "playlist"-background picture.
As you can see in my skinedit theres the same pictures for both.
It is possible to use 2 different pictures?
mchawk
|
|
Audiosoft
|
posted on 10-9-2007 at 10:30 PM
|
|
|
For the 'now playing' background you can open up your nowplaying.dis file in notepad and change the background url(filename);
The filename can be any jpg, gif, animated gif or png in your skinfolder.
body {
background-attachment: fixed;
background-position: left top;
background-repeat: repeat-x;
background-color: #000000;
background-image: url(nowplay4.jpg);
}
or if you open the playlist.dis you can change the playlist background and up next area background images:
body {
background-attachment: fixed;
background-position: left top;
background-repeat: repeat-x;
background-color: #000000;
background-image: url(nowplay4.jpg);
}
........
/* AutoPlay UpNext Display Definitions */
.upnext {
background-attachment: fixed;
background-position: left top;
background-repeat: repeat-x;
background-color: #000000;
background-image: url(nowplay4.jpg);
}
Audiosoft
|
|
mchawk
Member
Posts: 161
Registered: 2-16-2006
Location: Germany
Member Is Offline
|
posted on 10-11-2007 at 10:37 PM
|
|
|
I nearly forgot: Thanks for the tip.
|
|