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

HTML HTML Video and Audio (Retired) Custom Media Players Polishing a Custom Skin

Time rail height is not 100%

I need help getting the time rail to have the same height is in the example. Currently it is only showing at 50%. Here is my CSS. Thanks

.mejs-treehouse .mejs-controls{
  background: rgba(56,64,71,0.98);
  height: 30px;
}

.mejs-treehouse .mejs-controls .mejs-button 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: white; 
}

.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,0.8); 
  font-family: Helvetica, Arial; 
  font-size: 13px; 
  color: #FFF; 
}

1 Answer

Right now your height: 100% property is applied to the selector

.mejs-treehouse .mejs-controls .mejs-time-rail .span

if you want your time-rail to have the property, then move it to the selector

.mejs-treehouse .mejs-controls .mejs-time-rail