Re: [WSG] Scrollbars in IE6 (PC)

2004-03-24 Thread darian
I'm not quite sure what you mean... maybe this will help. if content of a div is larger than the space provided (eg screen size restriction, or width, height, settings) there is an overflow css attribute to handle it. For example overflow: hidden; hides any thing that doesn't fix, overflow:

Re: [WSG] Scrollbars in IE6 (PC)

2004-03-24 Thread Vaska . WSG
Yes, but it's not the overflow of the div, it's the frame itself. The page is going larger than the frame window - meaning, the divs aren't respecting the size of the window. Sorry if my explanation was confusing on that point. ;) On 24 Mar 2004, at 09:40, [EMAIL PROTECTED] wrote: I'm not

Re: [WSG] Scrollbars in IE6 (PC)

2004-03-24 Thread darian
ahhh ok ok I got ya hmmm... I noticed you haven't included any height attributes in the CSS. Maybe if you put height: 100%; then that would restrict the div and stop it from going larger than the window. Anyways, you may have noticed I'm fairly new to this too :P I used to do all this stuff

RE: [WSG] Scrollbars in IE6 (PC)

2004-03-24 Thread Jeff - Accessibility 1st
] [mailto:[EMAIL PROTECTED] On Behalf Of Vaska.WSG Sent: Wednesday, 24 March 2004 7:54 PM To: [EMAIL PROTECTED] Subject: Re: [WSG] Scrollbars in IE6 (PC) Yes, but it's not the overflow of the div, it's the frame itself. The page is going larger than the frame window - meaning, the divs aren't

RE: [WSG] Scrollbars in IE6 (PC)

2004-03-24 Thread Peter Firminger
Hi Vaska, Posting a link to it will really help. Without seeing the rest of the HTML (doctype etc.) we have no idea about whether or not you are in standards compliant mode and what else is in there. Are you using a frameset doctype. Have you validated all your code (html and css)? Can I ask (in

RE: [WSG] Scrollbars in IE6 (PC)

2004-03-24 Thread Phillips, Wendy
IE6 has a bug with frames and scrollbars when the page contains an XHTML doctype declaration. If the content causes vertical scrollbars, IE thinks that the width of the scrollbar must be included in the overall width of the page and produces horizontal scrollbars when they are not necessary.

Re: [WSG] Scrollbars in IE6 (PC)

2004-03-24 Thread Martin Stender
Just from the top of my head (@ home with my Mac now); can't you just: body { margin: 0px; overflow:hidden; } ? Martin On 24/3-2004, at 9.06, Vaska.WSG wrote: Hi everybody... I'm having a terrible time trying to figure out just why IE6 (Windows XP) is throwing scrollbars at me