The responsive.css file is not being read by my site.
I'm calling it like this:
<link type="text/css" rel="stylesheet" href="css/responsive.css">
Inside it there is the following code:
@media screen and (max-width: 640px) {
.right-side { width: 100%; }}
In this case, right-side is set to 50% .
Which is not being applied when I emulate the browser in the mobile version. Galaxy S5 (360 * 640)
What can it be?