Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mediaelement volume control is invisible on IE8

When using mediaelement.js on http://hanselminutes.com, the volume button is invisible on IE8. It seems that perhaps it's being covered up by the other audio controls being too wide? Oddly, if you click in the area that it should be, it's kind of there, although too far left. The volume icon never shows up.

Invisible Volume control with MediaElementJS on IE8

like image 335
Scott Hanselman Avatar asked Sep 30 '11 17:09

Scott Hanselman


1 Answers

I know nothing about mediaelement.js but if you add the following to the bottom of your hanselminutes.css it appears to fix it:

.mejs-time-rail{
  max-width: 370px;
}

.mejs-time-total {
  max-width: 348px;
}
like image 124
brendan Avatar answered Sep 19 '22 20:09

brendan