Hi
I'm using whatsmy.browsersize.com to get my browser size for adding mediaquries to my css files.
For some reason when i write a media query for max-width: 1229px the query gets applied at 1350px!
I'm writing my queries like this
@media screen and (max-width: 1229px){
.galleries > ul > li a {padding: 0 .3rem 0 .3rem;}
}
And i have
<meta name="viewport" content="width=device-width" />
on my web page.
Can anyone see what im doing wrong?