Bug 329217 - Project pages created around 20-10-10 always show horizontal scroll bar
Summary: Project pages created around 20-10-10 always show horizontal scroll bar
Status: RESOLVED FIXED
Alias: None
Product: Community
Classification: Eclipse Foundation
Component: Website (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows Vista
: P3 minor (vote)
Target Milestone: ---   Edit
Assignee: phoenix.ui CLA
QA Contact:
URL:
Whiteboard:
Keywords: ui
Depends on:
Blocks:
 
Reported: 2010-11-01 15:09 EDT by Werner Keil CLA
Modified: 2012-03-27 13:25 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Werner Keil CLA 2010-11-01 15:09:36 EDT
Projects with Nova L&F created around the week between Oct 13 and 20, 2010 share a CSS/rendering problem. The horizontal browser scrollbar is always present, even if the page content is far from wider than the browser window.

This applies at least to Sapphire, Sphinx and UOMo.

Tested browsers are Chrome, Firefox 3/4 and IE7/8, all showing the same problem.
Comment 1 Werner Keil CLA 2010-11-02 07:27:14 EDT
http://www.eclipse.org/gemini/
is equally affected as seem all other Gemini subprojects.

This raises the question, whether Nova L&F as such could have something to do with it.
Comment 2 Nathan Gervais CLA 2010-11-02 08:50:59 EDT
The problem here is with the #bigbuttons style that holds well big buttons.

Since it is inheriting style information from its parents it has a 980px width but then is set to appear 420px from the left in order to move it over.

Specifying the width to be 560px or less will fix the problem.

#bigbuttons {
	position: relative;
	left: 420px;
	top: -200px;
        width: 560px;
}
Comment 3 Werner Keil CLA 2010-11-24 04:29:28 EST
Thanks, I also noticed, Woolsey has a better handling of this and the big buttons in general, so I'll check out its PHP and related code to see what I could apply to UOMo.
Comment 4 Denis Roy CLA 2011-04-06 15:11:37 EDT
*** Bug 329028 has been marked as a duplicate of this bug. ***
Comment 5 Werner Keil CLA 2011-04-06 17:09:35 EDT
(In reply to comment #4)
> *** Bug 329028 has been marked as a duplicate of this bug. ***
It isn't, see comments of 329028. This bug is still open, most prominent new case is EGit.
Comment 6 Werner Keil CLA 2012-03-27 13:25:24 EDT
Should be fixed via CSS