From 818cbe7b4bf1e685f8ca72e0982b38c0200fff7e Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 11 Jul 2018 07:55:26 -0400 Subject: [PATCH] Make all images that should be responsive responsive --- style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index fc2495b..23deea7 100644 --- a/style.css +++ b/style.css @@ -241,7 +241,11 @@ input[type="date"], input[type="time"], input[type="datetime-local"], input[type } @media screen and (max-width: 600px) { - img.wp-image-52 { + img[class*=" wp-image"], img[class^="wp-image"] { + min-width: 100%; + } + + figure[class*=" wp-caption"], figure[class^="wp-caption"] { min-width: 100%; } }