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
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
Add to your CSS:
body{
overflow:auto;
}
or inline, if you prefer:
<body style='overflow:auto;'>
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...