Horizontal scrollbar shows only when I enable Drupal blocks/regions.
IE6 works fine(meaning no horizontal scroll bar), but FF2 shows Horizontal scrollbar and I dont know why that happens.
Panels with disabled Drupal blocks/regions dont show horizontal scroll bar on FF2.

Comments

yagur’s picture

I think... it's garland theme problem. other theme works well.

When I use garland theme, panels's content dont event shows up in IE6. But FF2 shows them well.
I think there is some problem with garland theme's css. or some bug in IE6.
Anybody know why?

I've also tried Panels v1.2 and panels module's content displayed well in IE6(with Garland theme).

amitaibu’s picture

This might be solved through CSS, I think it might be the overflow definition

Try adding where needed

overflow:hidden;

if this doesn't help try the white-space definition

white-space: normal;

Tip - try using the Firebug add-on in firefox to do all those tests

yagur’s picture

Thanks! It helped a lot, I'm not good at HTML/CSS and PHP.
And I found out that Horizontal scrollbar only shows up when I enable the blocks on right side.

I added 'overflow: hidden' to garland theme's file "style.css" at line 321.

#wrapper #container {
  margin: 0 auto;
  padding:0 20px;
  max-width: 1270px;
  overflow: hidden;
}

Now I dont get Horizontal scrollbar at FF2 with Panels v1.2 ( Probably latest revision will not show scrollbar, too)
Problem(bug) remains with latest revision. Latest revision's Panels module wont show it's content at all with IE6(FF2 works fine).
There must be some difference between v1.2 and latest revision from CVS, because v1.2 work well in IE6.

amitaibu’s picture

What version are you using?
Try the new panels 2-13 alpha...

yagur’s picture

I tried 2-13 alpha, v1.2, and latest revision from CVS(Branch was DRUPAL-5--2).

only v1.2 shows it's contents with IE6. Others(2-13 alpha, latest revision bracn DRUPAL-5--2) dont show it's content at IE6, and I have no idea why.

catch’s picture

Status: Active » Closed (duplicate)