Ok there is a code out there that will make it a bg image but wont repeat instead of putting it in the <body> tag you put this code in the <head> tag:
<style type="text/css">
body {background-image: url(images/test3.JPG); background-repeat: no-repeat;}
</style>
Well it works great but i use alot of javascript on my page, and some java needs to be in the <head> tag. Well when the bg no repeat code interacts with the javascript code in the <head> section the page is just blank. So im guessin that javascript and the no repeat code cant be in the <head> tag together. Does any one know a way that i could fix this problem. Thanks
<style type="text/css">
body {background-image: url(images/test3.JPG); background-repeat: no-repeat;}
</style>
Well it works great but i use alot of javascript on my page, and some java needs to be in the <head> tag. Well when the bg no repeat code interacts with the javascript code in the <head> section the page is just blank. So im guessin that javascript and the no repeat code cant be in the <head> tag together. Does any one know a way that i could fix this problem. Thanks