The align center on the mega menu doesn’t work on IE8
This is the line that does the centering in the megamenu.css file for T3 framework.
.t3-megamenu .mega-align-center > .dropdown-menu {
left: 50% !important;
transform: translate(-50%);
-ms-transform: translate(-50%);
-webkit-transform: translate(-50%);
-moz-transform: translate(-50%);
-ms-transform: translate(-50%);
-o-transform: translate(-50%);
}
I added -ms-transform: translate(-50%); for IE9
But there isn’t a transform translate for IE8
Is there a know fix for this. Half of my Megamenu is off screen on IE8 and of course lower…
Thank you.