Home › Forums › Support › Windows Phone scale issue › Reply To: Windows Phone scale issue
October 16, 2015 at 1:20 am
#144787
Hi Tom,
Problem is that I have to remove whole this whole block
@media (max-width: 400px) {
@-ms-viewport {
width: 320px;
}
}
and replace it with this
@-ms-viewport {
width:device-width
}
But with child theme you are supposed to override parent styles and I cannot remove that one.
This one won’t work
@media (max-width: 400px) {
@-ms-viewport {
width: device-width;
}
}