From f26a5e6f881faf3976c1a3256bce55819a4e3475 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sun, 14 Nov 2010 16:27:00 -0500 Subject: Fixed large images in post error Previously, when an image was larger than the post body, it would just break out. Now, all images have a max-width equal to the width of the container, so they will resize with their containers and omg yay. --- theme/css/website.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/theme/css/website.css b/theme/css/website.css index 10771bc..1d7bdc3 100755 --- a/theme/css/website.css +++ b/theme/css/website.css @@ -48,6 +48,9 @@ a img { border: 0; } +img { + max-width: 100%; +} body[id^=fourm] div#page div#content code { display: block; -- cgit 1.4.1