There is a site which is written for the desktop, you now need to make it adaptive for mobile devices.
I do so:
@media screen and (max-width: 800px) {
* {
display: block; /* just checking */
}
}
My problem is that these styles do not apply without !important. I understand that this is because the styles I write with a...