Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Need margin between the playlist and the video


Hi,

I need some margin between the playlist and the video. My total width is 960px and the width of the video is 640px. This makes the playlistsize = 320px. I want the playlist to be around 230px only. When I set the playlist width=230px, the video is resized and it looks fuzzy. So I want to maintain the width of video around 640px and want a margin of 45px between the playlist and the video, so that the video is central aligned and not right aligned.

Is this possible with css or I need to change the jwplayer code?

Thanks,
Nazia

5 Community Answers

Ethan Feldman

JW Player Support Agent  
0 rated :

I’m afraid there is no way to put space between the player and playlist. They will always be connected.

n...

User  
0 rated :

Thanks for the reply.

Ethan Feldman

JW Player Support Agent  
0 rated :

Np.

n...

User  
0 rated :

With James Herrieven's help I was able to resolve this issue with following code:

jwplayer("testHTML5").setup({
'id':'htmlPlayer',
"modes":[{
"type": "html5"
},
{
"type": "flash",
"src": "/JWPlayer/player.swf"
}],

'autostart': "false",

'controlbar': "over",
'flashplayer': "/JWPlayer/player.swf",
'volume': "80",
'width': "960",
'height': "392",
'skin': "/JWPlayer/Skins/bekle/bekle.zip",
'frontcolor': "777777",
'backcolor':"777777",
'playlistfile': "/JS/Playlist.xml",
'playlist.position': "right",
'playlistsize':"305",

'linktarget': '_blank',
'linkfromdisplay': 'true',
'repeat':'always',

'stretching': "uniform"
});

Ethan Feldman

JW Player Support Agent  
0 rated :

Cool.

This question has received the maximum number of answers.