Within my CSS file, I've included a series of media queries specifically tailored for ie10...
@media screen and (max-width :1510px), screen\0{
div.jw-menu-3col-sm li a .menuItem {
padding: 0 12px;
}
}
@media screen and (min-width :1650px), screen\0{
div.jw-menu-3col-sm li a .menuItem {
padding: 0 16px;
}
}
Strangely, when adjusting the screen size, it seems like the correct media query isn't being applied. What could be causing this issue?