You need to look into CCS style sheets.This will do the trick for know.Just change the image name images/logo.gif to the background image your using.And make sure you have the correct path as well.
Hope this helps.OH YEAH this goes anywere between the <head> </head> tags.
<style>
body {
background: url("images/logo.gif");
background-repeat: no-repeat;
}
pre {
background: url("images/logo.gif");
background-repeat: repeat-x;
}
menu {
background: url("images/logo.gif");
background-repeat: repeat-y;
}
p {
background: url("images/logo.gif");
background-repeat: no-repeat;
}
</style>
Regards Steveharro Best Download Sites
|