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! While you're at it, check out some resources Treehouse students have shared here.

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

General Discussion

Margaret Crossin
PLUS
Margaret Crossin
Courses Plus Student 6,495 Points

How do I move Video Time-Bar

How do I move Video Plays Back With Time-Bar At Bottom Of Screen? It's blocking my tutorial and I can't see the code.

Jeff Noble
Jeff Noble
3,985 Points

This is crazy! one of the most popular browsers isn't working with your video tutorials! (Chrome) THIS IS A VIDEO TUTORIAL WEBSITE! Also, you are teaching people this stuff, meanwhile a key component doesn't work??? Get with it, seriously.

9 Answers

Amit Bijlani
STAFF
Amit Bijlani
Treehouse Guest Teacher

@margaret if you move your mouse away the video then the bottom bar should disappear automatically.

David Turner
David Turner
5,556 Points

Has anyone come up with a solution to this problem? I have the same problem since switching to Windows 8.

David Turner ,

For all troubleshooting solutions shoot an email to the Treehouse Support Team. :) We'd be happy to answer your questions and provide any solutions that we have available. Our email is help@teamtreehouse.com Thanks! :)

All the best,

Elizabeth Treehouse Support

Margaret Crossin
PLUS
Margaret Crossin
Courses Plus Student 6,495 Points

That doesnt work, it still remains there. I am using Google Chrome.

Margaret

Sorry you're having trouble. Could you email the Support team in regards to troubleshooting concerns? help@teamtreehouse.com Thanks! :)

James Barnett
James Barnett
39,199 Points

@margaret - If you want to remove the bar when the video is stopped, you can use this grease monkey script made by fellow Treehouse user @jure ravlic.

Michael Lesich
Michael Lesich
341 Points

Script no longer exists.

Moritz Iso
Moritz Iso
1,269 Points

Hi everyone, I have the same problem as Magaret. I'm using Google Chrome and the bar doesn't disappear. Really boring.

I have a temporary solution by doing a right click when the video is stopped on the time bar to open the developper tools (inspect the element), and suppress the div called mejs-controls. With a control + Z , I can put back in place the time bar after.

Treehouse is awesome, but this little problem affect the user experience. I will send this request at help@teamtreehouse.com .

Thanks.

I'd like to bump up this old topic. I am using Chrome and Windows 8 and having the same issue.

James Barnett
James Barnett
39,199 Points

Michael Russin -

The best way to get help for technical issues and generally things that don't seem to be working right is to contact support directly by emailing help@teamtreehouse.com

Michael Lesich
Michael Lesich
341 Points

Having this problem too using Chrome and Windows 7. Why can't it just be answered once here by tech support instead of clogging up the help desk?

Moritz Iso, thank you so much for this workaround. This has been a minor frustration for me and now it's gone. Thank you, and thank you.

I 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;
}
James Barnett
James Barnett
39,199 Points

That's a slick hack, thanks for sharing.