you could make it show up "center, middle" with no tiling or scrolling if
you like by using .css:
body{
background-image: url(images/world1.bmp);
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
btw, you may want to look into using a different format for the picture, bmp
is usually unnecessarily large file size.
HTH
Dick C. said:
I have a background picture <body background="world1.bmp">, it takes up
the whole screen on my pc but tiles thpicture on other screens. Anyway I
can have the picture just fill the screen, no matter how large the screen
is?