tags:

views:

32

answers:

3

hi to all

does any could help me how to remove unnecessary scroll bar in ie6.

thanks in advance

here is my url

http://webberzsoft.com/clients/csslayouttest/template_new.php

A: 
overflow-y: hidden
Alsciende
A: 

Add to your CSS:

body{
  overflow:auto;
}

or inline, if you prefer:

<body style='overflow:auto;'>
Brant
+1  A: 

You'll want:

#wrapper{
    min-height:99%;
    width: 1240px;
    margin:0 auto;
    background: #FFFFFF;
    border-left:1px solid #000;
    border-right:1px solid #000;
    overflow-y: hidden; /*HERE*/
}

In there too...

Neurofluxation