This issue is new to me. I am facing difficulty modifying the width in my media query. Interestingly, in the developer tools, the width appears crossed out, as if I toggled it off, but that's not the case; it's the default setting.
All I want to do is change this:
div.wrapper{
display:block;
width:100%;
}
to this:
.wrapper {
width: 95%;
margin: 0 2.5%;
}
I also attempted to change my media query class from wrapper
to div.wrapper
...but it didn't fix the issue.
What could be causing this?