How can I stretch a large image for a web background
instead of it tiling. thanks

Re: stretch a image for background instead of tile by Stefan

Stefan
Mon Nov 03 03:08:02 CST 2003

Html background images can not be stretched
In an image editor add "white" space to your image so it won't tile
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"billy bob" <anonymous@discussions.microsoft.com> wrote in message news:0a4b01c3a1ae$abe57930$a001280a@phx.gbl...
| How can I stretch a large image for a web background
| instead of it tiling. thanks



Re: stretch a image for background instead of tile by jon

jon
Mon Nov 03 21:37:41 CST 2003

Hi,
impossible I'm afraid. However you can stop it tiling with some CSS - you'd
probably also want to centre it on the page
<style type="text/css">
body{
background-image url(image.gif);
background-repeat:no-repeat;
background-position:center;
}
</style>

--
Jon
Microsoft MVP - FP


"billy bob" <anonymous@discussions.microsoft.com> wrote in message
news:0a4b01c3a1ae$abe57930$a001280a@phx.gbl...
> How can I stretch a large image for a web background
> instead of it tiling. thanks