View Full Version : background help


applescruff
10-19-2003, 02:07 PM
My background is supposed to be one big picture that fills the screen, but for some reason it has become a bunch of little squares of it, like this: http://www.geocities.com/applescruff87
Here's the code I'm using:
<body background="http://www.picturevillage.com/photo/data/ 93129bca9fb2d3cb3470e2b9cfde7f63/11233_p138168.jpg" bgproperties="fixed">

Sheila
10-19-2003, 02:10 PM
If you want the background to fill the entire page, I think you will have to use a graphics program to make the image bigger.

To get it to stop tiling, you can use CSS....
<style type="text/css">
<!--
body
{background-image: url(Image Url Here);}
-->
</style>

applescruff
10-19-2003, 02:11 PM
The image does fill the entire page though. It did before but for some reason it started tiling all of a sudden.

Sheila
10-19-2003, 02:22 PM
That's weird. You could try this...

(Whoops I forgot the no-repeat in the above code.) Put this between the <head></head> tags....


<style type="text/css">
<!--
body
{background-image: url(Image Url Here);
background-repeat: no-repeat;}
-->
</style>