Hi
I’m trying to target (eg) the iPhone with different CSS on https://dev.reachuk.org/fundraising/challenge-events/, eg to reduce the size of the h1 heading and shrink the images on the right (ViaVelo etc). I have this in the page’s CSS:
/* iPhone 8 and smaller*/
@media only screen
and (max-device-width : 667px) {
.attachment-large.size-large.wp-post-image {
width: 10%;
}
h1 {
font-size: 1em;
}
}
… but it doesn’t work. Can you tell me where I’m going wrong?
Thanks
Mike.