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

Eliminate audio control


Hi there ... I need to eliminate audio control in a player so I can play set volume to zero, and user can't modify it
but I still need the control bar
Is there a way to do that?

Thanks

1 Community Answers

Todd

JW Player Support Agent  
0 rated :

JW7 uses CSS to render all the player controls, so removing the volume button requires just a few lines of CSS in a <style> tag:

<style>

.jw-icon-volume {
display: none;
}

</style>

Please see http://www.jwplayer.com/blog/css-jw7/ for more details.

This question has received the maximum number of answers.