Tell us what’s happening:
I have problems with media query, and some of the codes in CSS are not responding. Could anyone help please? Below is my link to the code, tried to do everything possible with no results.
/* Media Query Statement */
@media only screen and (max-width: 650px) {
/* Selector & Properties to change when criteria is meet. */
.logo {
margin-top: 15px;
width: 100%;
position: relative;
}
/* You can target multiple selectors with the same media query */
.anything {
color: red;
}
}