From 1731722ca56e46effae4ef20ab73b05d4a334be2 Mon Sep 17 00:00:00 2001 From: Drew Decker Date: Mon, 15 Feb 2016 21:07:01 -0600 Subject: [PATCH] Update style.css to fix IE border image issues This is to fix display issues in IE. When browsing in IE, there is a box around the images on the main, initial listing. If you add the code commited, it resolves the issue. --- apaxy/theme/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apaxy/theme/style.css b/apaxy/theme/style.css index a564053..9310a7b 100644 --- a/apaxy/theme/style.css +++ b/apaxy/theme/style.css @@ -36,6 +36,10 @@ a { color:#61666c; text-decoration:none; } +a, img { + border:none; + outline:none +} a:hover { color:#2a2a2a; } @@ -119,4 +123,4 @@ tr.parent a[href^="/"] { .footer { text-align:center; font-size:.75em; -} \ No newline at end of file +}