I am working with Wordpress and trying to get the media queries to run. I used a test site here: Responsive Design Testing When using it, the browser seems to indicate that it ALWAYS goes to
responsive testing site not working
7
I am working with Wordpress and trying to get the media queries to run. I used a test site here: Responsive Design Testing
When using it, the browser seems to indicate that it ALWAYS goes to
No matter how the browser is resized. I can have it really tiny and it still tries to run stuff under 1600px.
The problem page is here: here
Below is what is set up in the CSS file. Why are the media queries not working?
When using it, the browser seems to indicate that it ALWAYS goes to
Code:
@media screen (min-width: 1201px) and (max-width: 1600px) { The problem page is here: here
Below is what is set up in the CSS file. Why are the media queries not working?
Code:
@media screen and (max-width: 240px) {
}
@media screen (min-width: 241px) and (max-width: 320px) {
}
@media screen (min-width: 321px) and (max-width: 480px) {
}
@media screen (min-width: 481px) and (max-width: 768px) {
}
@media screen (min-width: 769px) and (max-width: 920px) {
}
@media screen (min-width: 921px) and (max-width: 1024px) {
}
@media only screen (min-width: 1025px) and (max-width: 1200px) {
}
@media screen (min-width: 1201px) and (max-width: 1600px) {
} - Michael71
- dgmufasa
- delilahann
- [1] reply
- dgmufasa
- Michael71
- [ 1 ] Thanks
- [1] reply
- dgmufasa
Next Topics on Trending Feed
-
7