To have all the songs appear in your playlist, add this to your style.css file:
#muziek .jp-type-playlist li { height: 18px; }
The second <li> tag is still blocking the player. Layout in this area of ββthe page as follows:
<ul style="{snip... use existing styles}" id="muziek"> <li style="{snip... use existing styles}"> <div id="muur-wrapper"> <img src="images/muziek-muziek.png" style="position: absolute; left: 251px; top: 300px;"> </div> </li> </ul>
Then you will notice that clicking on the items in your playlist returns you to the home page. This is because you have links with href = "#". This is their correct behavior, but I assume that the "#" will eventually be replaced by a link to the actual mp3 files. In any case, this should lead to the fact that the player will behave the same as in your separate demo.
Chris source share