Background Tile

O

oldgoat

Is there a way to format a background without the tile effect in FP2000. I
want to use a created graphic and just stretch it to fit.
 
P

p c

Yes, apply style directive to the body tag. Copy the following style
between the head tags in the HTML view of the page. Change the url of
the image to correspond to yours. I don't think you can stretch it. If
you need bigger size, create a bigger version of the picture with an
image editing program.

<style>
BODY {
background: white url("images/pic1_small.jpg");
background-repeat: no-repeat;
background-position: center;
}
</style>

See this for explanation
http://www.w3.org/TR/REC-CSS2/colors.html

...PC
 

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

Top