Hello,
Try changing this:
html, body {
padding: 0px;
margin: 0px;
background-color: #AABAC8;
}
To this:
body {
padding: 0px;
margin: 0px;
background-color: #AABAC8;
}
as you have this style embedded in your page:
body {
background-image: url(background.gif);
background-repeat: repeat;
}
If you want that gradient on all pages, just delete the embedded body style
and change the body CSS in your stylesheet to:
body {
padding: 0px;
margin: 0px;
background-image: url(background.gif);
background-repeat: repeat;
background-color: #AABAC8;
}
Take care,
Tim
"Old Shoe" <webforumsuser (AT) macromedia (DOT) com> wrote
Quote:
Yes, that's it. Thanks for understanding me. |