Queue line colors dont scroll with the song.

esac

06-07-2006 19:40:07

When I have a bunch of files in the queue, and i scroll up an down, i notice that the 2 different color lines dont move with the song titles. this leaves the song unaligned with the background, and makes it harder to read.

Amish

06-07-2006 19:46:12

Can you post a screenshot of what you mean please. Its kind of hard to get an image fomr your discription XD

esac

06-07-2006 20:17:54

Can you post a screenshot of what you mean please. Its kind of hard to get an image fomr your discription XD[/quotetxd2r8rb]

Sure. Slow host, but it should load. Notice that the song titles are in between the lines. This is firefox, not tested anywhere else.

[imgtxd2r8rb]http://filexoom.com/files/8216/vibe-lines.jpg[/imgtxd2r8rb]

Amish

06-07-2006 21:05:29

Hmm seems like the browser problem, try it in internet explorer. And see if it messes up like that.

esac

06-07-2006 21:18:06

Hmm seems like the browser problem, try it in internet explorer. And see if it messes up like that.[/quotehv992a3a]

It works fine in IE7 .. so it must be a firefox issue, looks like it treats the background-imageurl(images/background-playlist.gif); CSS tag as a relative image that scrolls with the playlist rather than an absolute positioned image.

Amish

06-07-2006 21:32:19

Yeah i assume so, but generally Firefox renders CSS better than IE. So...

sox

06-07-2006 21:48:37

Yeah i have noticed that in Firefox aswell...

siit

07-07-2006 10:08:32

Yea this is totally browser depending.
I'm gonna re-do the code for for the updated standard skin, I'll see if I can get around this in a nice way...

TastyWheat

07-07-2006 17:03:22

I use Firefox and I noticed the file listing in the lower right pane looks fine. The text and the lines never overlap there so maybe you should try doing the same thing for the playlist. I like the alternating colors for each line so you should definitely try and keep that.

keithmcd

01-08-2006 00:53:42

Fixed it in Firefox. If you all edit your player.vibe and change the first style to the following, the background will follow the text. Was missing a css tag and it needed to be applied to a table that was inside a div.

[codekfrmjgpl]#playlistContentDiv, #playlistBody
{
position:relative;
overflow:auto;
width:100%;
height:100%;
background-image:url(images/background-playlist.gif);
background-attachment: scroll;
}[/codekfrmjgpl]

Phil

03-08-2006 02:14:24

Fixed it in Firefox. If you all edit your player.vibe and change the first style to the following, the background will follow the text. Was missing a css tag and it needed to be applied to a table that was inside a div.

[code2yxivcpn]#playlistContentDiv, #playlistBody
{
position:relative;
overflow:auto;
width:100%;
height:100%;
background-image:url(images/background-playlist.gif);
background-attachment: scroll;
}[/code2yxivcpn][/quote2yxivcpn]

Nice fix, thanks.