Closed (won't fix)
Project:
Drupal core
Version:
5.x-dev
Component:
theme system
Priority:
Minor
Category:
Bug report
Assigned:
Reporter:
Created:
21 Aug 2006 at 17:56 UTC
Updated:
6 Dec 2006 at 18:42 UTC
Jump to comment: Most recent file
Comments
Comment #1
owahab commentedThis happened IMHO because the page had total elements widths reaching 100%, some browsers tend to draw an empty horizontal scrollbar.
Comment #2
fluitfries commentedThis patch does make the empty horizontal scrollbar disappear, but also makes the vertical scrollbar disappear! At that point you're totally unable to scroll the page at all.
Comment #3
killes@www.drop.org commentedreclassifying
Comment #4
dvessel commentedHere's a fix. Set's "display:block" for #header & #content.
Comment #5
dvessel commentedErr, sry. Thought header & body were div's. Didn't look at source. It does fix the scroll bar issue but the inner cells start freaking out.
Comment #6
dvessel commentedThis is a bug with FireFox 1.5 & below. You have to either live with it or try some other workaround.
This one's an easy fix, apply
overflow: -moz-scrollbars-vertical;to the body tag, but if you ever have a narrow window trying to scroll side ways, it won't happen.The other is to rework the header so it doesn't use tables so it can stretch 100% of the width then set the body to less than 100% as that doesn't have a color set to make it noticeable. But this is such a minor bug, I think it can be ignored.