I have created a big cartel theme and successfully installed it. Media queries inside the code work correctly on my computer, however when I load the site on my iPhone, it appears at the original width – it should be taking into account the max-device-width: 480px. Any help solving this issue would be really appreciated, thanks in advance.
Asked
Active
Viewed 150 times
1
-
Can you share the URL of your Big Cartel shop so I can take a look at the code? – Nick Endle Oct 07 '14 at 14:52
1 Answers
2
Make sure you include !important as this overrides all other code:
@media screen and (min-width: 767px) and (max-width: 1200px) {
.class {
font-size:1.2em !important;
color:#ffffff;
}
}
Like that.

cssninja
- 21
- 3