Background pic

D

Dick C.

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
Thanks.
 
S

Steve Easton

Not unless you make the image as large
as the largest screen resolution setting.

--
95isalive
This site is best viewed..................
...............................with a computer

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?
 
C

chris leeds

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?
 
C

chris leeds

give me a link to the page it's used on. it depends on the colors and stuff
but I'll tell you which it should be.
 
Top