So, I have an issue positioning an absolute element specifically for all IE versions.
.flowplayer.fixed-controls .fp-controls, .flowplayer.fixed-controls.is-mouseover .fp-controls {
bottom: -30px;
}
I want the bottom parameter to be set like this bottom: -18px; (only on IE). I loaded my modification to a sepate .css file setting the bottom to imporant calling it like this
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->
But it doesn't seem to work. Any ideas ? Thank you in advance.