From 10dc1a6ef1f0f2db91f090488578b4869545c44f Mon Sep 17 00:00:00 2001 From: fran1987 Date: Mon, 25 Mar 2013 18:52:47 +0100 Subject: [PATCH] overflow-y: hidden -> auto Fixed the sidebar scrolling problem for Opera users. --- style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 5cc5249b..8190eb7b 100644 --- a/style.css +++ b/style.css @@ -14,7 +14,8 @@ body { } #scrollwrapper { - overflow: hidden; + overflow-x: hidden; + overflow-y: auto; position: fixed; right: -38px; top: 0;