diff options
author | Drew Decker <drewrockshard@gmail.com> | 2016-02-15 21:07:01 -0600 |
---|---|---|
committer | Drew Decker <drewrockshard@gmail.com> | 2016-02-15 21:07:01 -0600 |
commit | 1731722ca56e46effae4ef20ab73b05d4a334be2 (patch) | |
tree | 98e27d6dc4b4ebdb95018b642380ddf42359392e | |
parent | 4650aff3f6ae048b37ebfcd2866c898f3be00843 (diff) | |
download | Apaxy-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.css | 6 |
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 +} |