I have never run into this issue before, but for some reason, I cannot modify the width in my media query. In the developer tools, the width shows as being crossed out like I toggled it to not show, but that is not the case, it does it by default.
I am simple trying to change this:
div.wrapper{
    display:block;
    width:100%;
}
into this:
.wrapper {
    width: 95%;
    margin: 0 2.5%;
}
I have even tried changing my media query wrapper class to div.wrapper...but it did not help,
What would be causing this?
