Background Picture tiles?

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

I want to use a background picture and place some hover buttons on it. When
I make a background picture it comes up "tiled". Is there a way to get a
background picture that is not tiled?

Thanks

Bob
 
You have to make the image equal to or slightly larger in size than the page you
want to use it on.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Hi Bob,
you'd need some CSS. First remove your background picture from the body tag
then add to the head of your page

<style type="text/css">
body{
background: #fff url(pic.gif) no-repeat;
}
</style>

Jon
Microsoft MVP - FP
 
Back
Top