Background pict in page properties

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
 
D

David Berry

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
 
T

Thomas A. Rowe

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
==============================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top