What is the best/easiest way to make the playlist coming out of the view a numbered list?

:O)

TIA!

Comments

pwaterz’s picture

Override theme_jplayer_item_list in your template.php

greg.b’s picture

pwaterz

Many Thanks

:o)

I shall have a crack at that.

greg.b’s picture

Update - I decided to do it all via CSS as I am not sure if the jplayer javascript needs to find an ul.

pwaterz’s picture

Status: Active » Closed (works as designed)
greg.b’s picture

For the record I did it this way :-

I changed the css so that the list style type is changed to decimal ( ie I did not override the type of list from ul to ol )

when I did it the crux of it was :-

div.jp-playlist ul {

list-style-type: decimal;

}

You may also need this to override the "current" FIRST selector

div.jp-type-playlist div.jp-playlist li.jp-playlist-current {

list-style-type: decimal;

}