When in Format, Background, how to stop picture tiling?

G

Guest

How do I stop the Background Picture from being tiled when I attach a picture
to the Format, Background function?
 
D

David Berry

You can use CSS to do this. Ex:

<STYLE TYPE="text/css">

BODY {
background-image: url(images/background.gif);
background-repeat:no-repeat;
background-position:center center;
background-attachment:fixed;
}

</STYLE>
 

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