Hi dear Theme.Co Team,
I have added some css code to have a responsive design.
When I write:
/*
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
…
It perfectly works but when I add the next part for larger screens, they do not work even if it is the same code:
/*
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
…
And so on…
So if I copy paste the code from small screen to larger screen, I cant see any change on the larger screen.
Have deactivated cache. The code must be alright, because its working on smaller screen and without “@media…”
this normally works fine.