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

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

Jon Spivey

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top