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

right click menu bug


hey,
i have bug in my player.
(*i use blogger for the site i will know why after..)
and when i right click in my player i have this bug http://i.imgur.com/DLRabnM.png
when i try on a "clean" page its good but when i try on my {blogger}site it happen..
please help

14 Community Answers

b...

User  
0 rated :

i fotget that i have this bug too.. ( http://i.imgur.com/vNArgLo.png )
same as the first bug.. work for "clean" page but on blogger its buggy

George

JW Player Support Agent  
0 rated :

Sounds like the blogger site is adding additional CSS on the page that’s causing this. Inspect the element styles to find the culprit

b...

User  
0 rated :

i will.. and back to you with an answer.. thanks

b...

User  
0 rated :

hey again.. i found the problem for this http://i.imgur.com/vNArgLo.png {body word-wrap: break-word;} but for this i just cant find that.. http://i.imgur.com/vNArgLo.png

George

JW Player Support Agent  
0 rated :

Do you have a test page I can refer to?

b...

User  
0 rated :

sure :) http://playertests.blogspot.co.il/p/jwplayer.html

George

JW Player Support Agent  
0 rated :

Hi,

I can’t seem to reproduce on Chrome 59, MacSierra. Where is this issue happening?

b...

User  
0 rated :

http://imgur.com/a/Z2Vxg (Hope I understood what you mean :))

George

JW Player Support Agent  
0 rated :

I see, find the element with the class “jw-time-tip”, it contains a jw-text element. This has some styling from the body:
overflow-wrap: break-word;
word-break: break-word;
word-wrap: break-word;

That’s what’s breaking it

b...

User  
0 rated :

umm.. so what should i do without destroy anything?
(sorry, i not really good at this things.. ;D)

George

JW Player Support Agent  
0 rated :

Hi,

I’m not too sure, not a front-end developer. However, in general the body tag shouldn’t have such styling as it breaks the idea of specificity of CSS. The body tag is a very broad element and styling gets applied to all content. I’d remove the CSS that’s targeting the body tag and instead create a class with the same styles and apply those styles to the specific containers that require the styling.

b...

User  
0 rated :

ok!
thank you so much for the help george!

b...

User  
0 rated :

oh um.. i remove the
"
overflow-wrap: break-word;
word-break: break-word;
word-wrap: break-word;
"
but the right click menu i still "buggy" http://i.imgur.com/OxnZyQS.png

George

JW Player Support Agent  
0 rated :

Hi,

The word-break was for the time-tip when hovering over the timeline.

For the right-click you have this CSS:
.post-body ul li:before {
/* content: “\f105”; /
margin-right: 5px;
font-family: fontawesome;
}
jwplayer.html:292
.post-body ul li:before {
/
content: “\f0da”; */
margin-right: 5px;
font-family: fontawesome;
}

remove the content options from those CSS declarations

This question has received the maximum number of answers.