aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/sidebar_is_obscured_by_recentchanges.mdwn
diff options
context:
space:
mode:
authorhttp://www.cse.unsw.edu.au/~willu/ <http://www.cse.unsw.edu.au/~willu/@web>2008-08-05 06:46:09 -0400
committerJoey Hess <joey@kitenet.net>2008-08-05 06:46:09 -0400
commit921b28dde35e677cbcf5ab2ac9479a3b66dfc3a2 (patch)
tree843044500d0b466d332cb8b91229e20c1329e893 /doc/bugs/sidebar_is_obscured_by_recentchanges.mdwn
parent4f58ad1c102a5e43ba86f3ca217e0ba560a5f83b (diff)
downloadikiwiki-921b28dde35e677cbcf5ab2ac9479a3b66dfc3a2.tar
ikiwiki-921b28dde35e677cbcf5ab2ac9479a3b66dfc3a2.tar.gz
More information making sidebar and recentchanges work together
Diffstat (limited to 'doc/bugs/sidebar_is_obscured_by_recentchanges.mdwn')
-rw-r--r--doc/bugs/sidebar_is_obscured_by_recentchanges.mdwn11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/bugs/sidebar_is_obscured_by_recentchanges.mdwn b/doc/bugs/sidebar_is_obscured_by_recentchanges.mdwn
index 4b093281b..088d34797 100644
--- a/doc/bugs/sidebar_is_obscured_by_recentchanges.mdwn
+++ b/doc/bugs/sidebar_is_obscured_by_recentchanges.mdwn
@@ -42,3 +42,14 @@ I think there is:
* A display bug in safari, and
* It would be nice to clean up the way recentchanges are displayed so that there isn't a vertical gap for the sidebar. I'll play with this and see what I can do.
+
+Looked at this a little more. I've found the following. Here is my current local.css:
+
+ div.recentchanges {
+ clear: both;
+ overflow: visible;
+ }
+
+Adding "clear: both;" makes the recentchanges div start below the sidebar. This makes safari behave like firefox above (2nd screenshot).
+
+Adding "overflow: visible;" (or removing "overflow: auto" from style.css) makes the sidebar appear above the recentchanges rather than below it (like the third screen shot above). Unfortunately because ".recentchanges .pagelinks" uses "float: right;" it doesn't look look exactly like the third screen-shot. For this reason I use the "clear:both;" as well.