How do I add a background image into the html code on this site? (LINK PROVIDED)?

http://www.valenciasalononwheels.com/site.html I want to add a background image to this site, removing the purple. I've already backed the image up in photobucket, but how do I place it on the site with compatible coding? Thanks in advance. Also, I want to image to take up the whole page, but not tile. How do I do that?

Public Comments

  1. Change <body bgcolor="#523655"> to <body background="image.gif"> if it's in the same directory as the site.html file or <body background="http://www.1.com/image.gif"> if the image is on another website.
  2. On the body tag remove the bgcolor <body bgcolor="#523655"> then add a style sheet definition between the head tags <style type="text/css"> <!-- body{ background-image: url("logo.png"); background-attachment: fixed; background-position: 100% 100%; background-repeat: no-repeat; } --> </style> I hope this helps you out ^.^
Powered by Yahoo! Answers