Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Lucas Premuda
2,515 PointsProgress Bar Won't Go Away
The progress bar that is at the bottom of the video will not go away. I use Google Chrome. To troubleshoot, I tried disabling and blocking all plug-ins, but the problem still exists. Any help would be greatly appreciated!
9 Answers

Stone Preston
42,016 Pointsif your mouse is on the video it stays. Have you tried clicking off in the sidebar or some other area of the screen off the video?
Im running chrome as well and havent had that problem

Lucas Premuda
2,515 PointsYes I've tried that and I'm still having the problem :(

Stone Preston
42,016 Pointshmm. can you try it firefox?

Lucas Premuda
2,515 PointsI don't have firefox, so I tried it in IE really quick, and IE is not having this problem, so it must be something with Chrome. However, I'd really prefer to use Chrome.

Stone Preston
42,016 Pointstry updating to the most recent release of chrome

Adeeb Syed
3,275 PointsI was having the same problem. My screen is touchscreen however and if I touched the video, the progress bar would go away. Not sure if you have a touchscreen or not though.

spalak
12,151 PointsThis is happening to me in Chrome (which is fully-updated) and is absurdly distracting. This bar doesn't go away if I click elsewhere on the page.
Additionally, I can't click anywhere on the video to make the video pause, I can only pause by hitting the play/pause button.
These two problems only occur for Chrome (not Firefox), and only started happening to me in the last few days. Both are incredibly annoying.

Thomas Kim
194 PointsI can confirm I am having the exact same problem on Chrome but not firefox~

Alex Boro
876 PointsYep someone needs to fix this

Baltazar Camacho
486 PointsIt happened to me as well, tried updating chrome and flash player and it still happened. But my laptop is a touchscreen and I realized the bar goes away if I touch outside the video area. Not if I click outside but only if I actually physically touch it.

Zeus Intuivo
13,129 PointsI solved it in Chrome using an extension called Stylebot, to activate the User Applied to pages then I made a rule like this,
.mejs-container .mejs-controls {
background: rgba(56,64,71,0.98);
bottom: 0px;
right: 30px;
width: auto;
height: 40px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: rgba(0,0,0,0.1) 0 0 0 1px inset,rgba(0,0,0,0.1) 0 0 5px 5px;
-moz-box-shadow: rgba(0,0,0,0.1) 0 0 0 1px inset,rgba(0,0,0,0.1) 0 0 5px 5px;
box-shadow: rgba(0,0,0,0.1) 0 0 0 1px inset,rgba(0,0,0,0.1) 0 0 5px 5px;
opacity: 0.4;
}
Daniel Politz
6,338 PointsI am also having this problem. If you could explain how to do the above in layman's term that would be much appreciated. IE isn't what I want to learn on and it's all that is working.

Zeus Intuivo
13,129 PointsFor IE. you have to take the code above and save it with a file name like: customstyle_treehouse.css
then follow the instructions in the page ( taken from http://webdesign.about.com/od/css/ht/htcssuseriewin.htm )
"How To Write a User Style Sheet for Internet Explorer for Windows"
User style sheets allow you to have more control over the Web pages you are visiting. They allow you to define styles for usability as well as for your own comfort. This how to explains how to use a user style sheet in Internet Explorer for Windows.
Difficulty: Easy
Time Required: 5 minutes
Here's How:
- Open Internet Explorer and click on the Tools menu.
- Go to Internet Options and click on Accessibility in the General tab.
- Click the check box for "Format documents using my style sheet".
- Browse to your style sheet and choose it. Then click "OK" twice to get out of the Internet Options menu.
- Close your browser and re-open it. Your styles will be applied to all pages you visit after that.
If you have a very old IE this might not work anyways. Just so you know Chrome and Firefox are free.