In FP 2002, Why does Image Used as Web Page Background Autmatically Tile?

  • Thread starter Thread starter AA Smith
  • Start date Start date
A

AA Smith

I'm at least temporarily stumped.

I have created web pages containing a background image with no problem.
However, one page that I modified today to contain an image for its
background consistently tiles the image in small (roughly 2" x 2-1/2") tiles
no matter how large the image actually is. I have triple-checked to insure
that the image that I've set as a page background is, in fact, the one that
I've repeatedly enlarged in Digital Image Pro 10 and then imported into the
Images folder of FP2002.

How can I get FP2002 to stop tiling this image?
 
URL to the page?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Thanks, again, Thomas.

Fortunately, I figured this one out, too.

I sincerely appreciate your interest in and willingness to help with this
problem.
 
This is not FP, it's HTML. All background images tile unless you explicity
forbid them from doing so by using CSS, e.g.,

body { background-repeat:no-repeat | repeat-x | repeat-y | repeat; } (to
show you the 4 options for that style)
 
Back
Top