Background

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

Guest

How do I elimate the background image from using the "Tile" effect. I want
to use the image as one single image not a tile? I have FP 2003
 
Use CSS and the background-repeat:no-repeat style. For example (using
inline CSS for simplicity):

<body style="background-image:url(foo.gif); background-repeat:no-repeat;">

This will place foo.gif as the page's background image, and will prevent it
from tiling.
 
Back
Top