hi folks,
dont ask why - i know its bullshit forbit the scrolling. but when the client wants absolut, i dont start to discuss.
so now I'm searching the body-tag to put scroll="no" inside. unfortunately the IE7 dont like the html, body { overflow: hidden; }. thats why i need scroll="no"
I've found one time the body in the index.php - but i didnt got an effect.
can somebody help me?
gracias
sroll="no" in the body-tag
In your CSS put something like the following
This should kill all your scroll bars
The important switch is
Greetings
claus
Code: Select all
html {
height:100%;
max-height:100%;
padding:0;
margin:0;
border:0;
background:rgb(209,205,193);
font-size:76%;
font-family:georgia, palatino linotype, times new roman, serif;
/* hide overflow:hidden from IE5/Mac */
/* \*/
overflow: hidden;
/* */
}
body {
height:100%;
max-height:100%;
overflow:hidden;
padding:0;
margin:0;
border:0;
background:rgb(209,205,193);
}
The important switch is
Code: Select all
overflow:hidden;
claus