I'm working on optimizing a responsive site, and Safari (both desktop and mobile) seems to completely ignore media requests below a certain point. I have code like:
@media screen and (max-width: 767px){ } @media screen and (max-width: 640px){ }
Firefox and Chrome both respond accordingly. Does anyone have any idea what is going on?
You can see the site here: http://kgillingham.webfactional.com . What should happen (and works in FF and Chrome) is that when the site gets smaller than 640px, the header font in the slider should become smaller.
to change . Now the site has been updated to use javascript to add a class when the size is less than 640 pixels. This class always uses a smaller font size. This means that it works as expected, but I would rather use CSS queries for the media than javascript, so I would still like to see a solution.
joshcartme
source share