
black overlay on the bottom of version 8
JWPlayer 8 now has a black/transparent overly at the bottom. how do I turn that off, dont like it at all.
JWPlayer 8 now has a black/transparent overly at the bottom. how do I turn that off, dont like it at all.
You will need a few lines of custom CSS on the page, but check out this code example:
http://qa.jwplayer.com/~abussey/demos/general/jw8-remove-gradient.html
is there anyway to add this to the cloud hosted version?
He is using a cloud-hosted player on that page, isn’t he? All you should need is the custom CSS and that will be applied to the player classes whether the player is self-hosted or cloud-hosted.
Maybe I am doing something wrong but it doesn't work how ever I add it.
<script src="https://content.jwplatform.com/players/0SST7VQM-tqDaKFl2.js"></script>
<script>
.jw-state-idle .jw-controls,
.jw-controls-backdrop {
background: transparent !important;
}
</script>
<style>, not <script>. And I would put it in the <head>:
bc.. <head>
<style>
.jw-state-idle .jw-controls, .jw-controls-backdrop {
background: transparent !important;
}</style>
</head>
<body>
<script src="https://content.jwplatform.com/players/0SST7VQM-tqDaKFl2.js"></script></body>
Thank you very much. that works perfect now.
You’re welcome. I am glad to hear it is working perfectly now.
I will mark this support case as closed, but certainly contact us again if you have any other support questions or concerns.