How do I remove tiling of background pictures on a web page?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am creating a web page in Microsoft Front page, and I want a picture in the
background. I can get it in the background, but it tiles all the way across
and down. How do I get it so that there is only one picture?
 
Hi,
You'd want to use some CSS, either in the head of your page or (better) in a
stylesheet.

body{
background-color: #ffffff;
background-image: url(Images/YourBackground.gif);
background-repeat:no-repeat;
}

You might want to centre the background which you cn do by adding
background-position: center;
to the above.
 
Back
Top