Hi
I have custom CSS to add a font and then resize depending on device. It doesn’t appear to fire the custom CSS on phones or tablets. Is my CSS wrong or is there a known issue with Themex?
The custom font loads ok but the resizing doesn’t work
.AreYou{
font-family: “AreYou” !important;
font-size: 20px !important;
color: #999 !important
}
.AreYouSmall{
font-family: “AreYou” !important;
font-size: 18px !important;
color: #999 !important
}
@media only screen and (max-width: 767px) {
.AreYou{
font-size: 18px !important;
}
.AreYouSmall{
font-size: 14px !important;
}
}
@media only screen and (max-width: 429px) {
.AreYou{
font-size: 16px !important;
}
.AreYouSmall{
font-size: 12px !important;
}
}
Any pointers would really help!!
