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

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

Guest

How do I stop the Background Picture from being tiled when I attach a picture
to the Format, Background function?
 
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>
 
Back
Top