Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

tallwes
6,871 PointsTime rail padding issue will not go away.
After adding CSS as instructed by Nick Pettit. The time rail is still lower than the rest of the player.
Here is my CSS:
.mejs-treehouse .mejs-controls {
background: rgba(56,64,71,0.98);
height: 30px;
}
.mejs-treehouse .mejs-controls .mejs-controls button { outline: none; }
.mejs-treehouse .mejs-controls .mejs-captions-button { margin: 0 7px; }
.mejs-treehouse .mejs-controls .mejs-captions-selector { background: rgba(56,64,71,0.98); width: 100px; right: auto; }
.mejs-treehouse .mejs-controls .mejs-time-rail { padding 0; }
.mejs-treehouse .mejs-controls .mejs-time-rail span { height: 100%; border-radius: 0px; }
.mejs-treehouse .mejs-controls .mejs-time-rail .mejs-time-total, .mejs-treehouse .mejs-controls .mejs-time-rail .mejs-time-loaded, .mejs-treehouse .mejs-controls .mejs-time-rail .mejs-time-buffering, .mejs-treehouse .mejs-controls .mejs-time-rail .mejs-time-handle { background: #2d3339; margin: 0; }
.mejs-treehouse .mejs-controls .mejs-time-rail .mejs-time-current { background: #ff9900; }
.mejs-container .mejs-controls .mejs-time-rail .mejs-time-total .mejs-time-float { border: none; background: none; text-shadow: 0px 1px 2px rgba(0,0,0,08); font-family: Helvetica, Arial; font-size: 13px; color: #fff; }
What did I do wrong?
2 Answers

Dale Severude
Full Stack JavaScript Techdegree Graduate 71,324 PointsYou are missing a colon with your padding value. Should be as follows:
.mejs-treehouse .mejs-controls .mejs-time-rail {
padding: 0;
}

Alan Lopez
PHP Development Techdegree Student 6,830 PointsI think I know what you are saying. The time rail is too wide and extends beyond the player. I changed the mejs-time-rail span CSS to this:
.mejs-treehouse .mejs-controls .mejs-time-rail span { height: 80%; border-radius: 0px; }
It seems like a better fit for my browser(s).