Webmaster Computer Resources Help And Learn To Earn Ideas!
Im just starting to create my first html page but my graphic background is tiled. What code can i put so the background will not move or not be tiled?
Comments (3)
background-repeat: no-repeat;
You have a tiled image and not tiling it is going to give you one small image.
But, use this:
body { background: #fff url(image_URL) no-repeat center fixed; }
Change color from #fff to preferred background color. This will cause image to be centered in page and contents to scroll over it.
Ron
Use Dreamweaver.
You must be logged in to post a comment.
Welcome to WebmasterTechs.com, your source for great webmaster resources and tips! Enjoy the site!
December 12th, 2006 at 7:35 pm
background-repeat: no-repeat;
December 15th, 2006 at 5:37 pm
You have a tiled image and not tiling it is going to give you one small image.
But, use this:
body {
background: #fff url(image_URL) no-repeat center fixed;
}
Change color from #fff to preferred background color. This will cause image to be centered in page and contents to scroll over it.
Ron
December 16th, 2006 at 12:53 pm
Use Dreamweaver.