
Originally Posted by
Peppy
Now everything but the background is fine!
Excellent! 
You nested two rules (indented for clarity):
Code:
.kisser {
position:absolute;
top:0;
left:0;
visibility:hidden;
z-index: 45;
body {
background: url(http://free.pages.at/lifeisbutadream/missu/image/satinblue.jpg);
}
}
This is illegal in CSS. It should be written:
Code:
.kisser {
position:absolute;
top:0;
left:0;
visibility:hidden;
z-index: 45;
}
body {
background: url(http://free.pages.at/lifeisbutadream/missu/image/satinblue.jpg);
}
Notice the difference in the position of the braces.
Mike
Bookmarks