summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDrew Decker <drewrockshard@gmail.com>2016-02-15 21:07:01 -0600
committerDrew Decker <drewrockshard@gmail.com>2016-02-15 21:07:01 -0600
commit1731722ca56e46effae4ef20ab73b05d4a334be2 (patch)
tree98e27d6dc4b4ebdb95018b642380ddf42359392e
parent4650aff3f6ae048b37ebfcd2866c898f3be00843 (diff)
downloadApaxy-1731722ca56e46effae4ef20ab73b05d4a334be2.zip
Apaxy-1731722ca56e46effae4ef20ab73b05d4a334be2.tar.gz
Apaxy-1731722ca56e46effae4ef20ab73b05d4a334be2.tar.bz2
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.
-rw-r--r--apaxy/theme/style.css6
1 files changed, 5 insertions, 1 deletions
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
+}