From c97af65e2652c85e8ff3713f927b192ff5479625 Mon Sep 17 00:00:00 2001 From: iandstewart Date: Mon, 6 Jun 2011 14:26:12 +0000 Subject: [PATCH] Twenty Eleven: prevent stretching of full-size images reduced in size with CSS in IE8; Props rosshanney and nickbohle; Fixes #17650 git-svn-id: http://svn.automattic.com/wordpress/trunk@18165 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyeleven/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-content/themes/twentyeleven/style.css b/wp-content/themes/twentyeleven/style.css index 60df6a08e..ee7f998c1 100644 --- a/wp-content/themes/twentyeleven/style.css +++ b/wp-content/themes/twentyeleven/style.css @@ -837,6 +837,9 @@ img.size-thumbnail { height: auto; max-width: 97.5%; } +img.size-full { + width: auto; /* Prevent stretching of full-size images in IE8 */ +} img.wp-smiley { margin-bottom: 0; margin-top: 0;