
Progress Bar not centered
The progress bar of the player appears to not be centered vertically.
You can take a look here:
http://moo.bg/jwplayer7/
The progress bar of the player appears to not be centered vertically.
You can take a look here:
http://moo.bg/jwplayer7/
Compare: http://misterneutron.com/JW7videoResponsive/
I'm not sure why they're different. Try giving the page a proper DOCTYPE and meta charset (like my example). Remove the trailing comma after the aspectratio (it's the last attribute, so there should be no comma).
Have you made any changes to the seven.css?
No changes. It appears the issue was due to the DOCTYPE.
It's surprising what a missing or improper DOCTYPE can do! Glad that fixed it.
(Your meta charset is still not right - in HTML5, it's:
<meta charset="UTF-8">
Not doing any harm, but might as well get it right.)
I think it has something to do with the way the browsers render the HTML5 and CSS. I’ll ask our engineers and get back to you.
I was having the same issue. DOCTYPE was the fix. Thanks for the post!
i was having same issue can anyone help me?
Ok, the problem is on headers...
Not Working Version:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
Working Version:
<!DOCTYPE html>
<head>