
Sizing JW Player for MP3 only
I am using JW Player 5.3 for MP3 playback on a website and I only want the controller portion of the player to show.
I am using the following settings along with jwplayer.js
<div id="sound">Loading the player ...</div>
<script type="text/javascript">
jwplayer("sound").setup({
flashplayer: "jwplayer/player.swf",
file: "jwplayer/O-Holy-Night.mp3",
height: 24,
width: 400
});
</script>
This should work, but the actual size of the #sound div displays at 304px x 53px. It also displays the play button that would appear in the middle of a video window.
By the way it plays the mp3 fine.
How do I configure it to limit the size to 24 by 400?