I am currently using media query in my css but my site is still looking bad. Is there a way to determine first the witdh of a browser and then load different index files?
To post some code here is my media query:
@media screen and (max-width: 600px) {
.topbar{
opacity: 0;
}
....
}