Background pict in page properties

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

Guest

How big does a background picture need to be not to tile? I have a background
that I want to add using page properties, background picture but if it is too
small it tiles madly.

How do I figure out how big to make a picture so it will not tile?

Thanks
 
You can use CSS to set it to a fixed position or no-repeat so it won't tile.
Otherwise you have to make it large enough so it looks right on the highest
resolution people might be using. For example:

<STYLE TYPE="text/css">
<!--
BODY {
background-image: url(images/background.gif);
background-repeat:no-repeat;
background-position:center center;
background-attachment:fixed;
}
-->
</STYLE>

You'll have to play with the CSS to get it the way you want it
 
The background image would need to be whatever size browser window the site visitor has open at the
time they are viewing your site. You have no control over this.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================
 
Back
Top