How to find image background in HTML/CSS coding?

Elon B

New member
This is my code. Can anybody figure this out for me? I'm trying to place a photographic image as the web page background. Can I do this in Dreamweaver?

Here's the link to my website code:
http://www.mediafire.com/?v4fe0kv4zwy6v73
 
Add this line after your CSS code:

<body background="imagelink">

Or open your page with notepad and add this in the body class:

background-image: url('imagelink');


It should look like this:

body {
background-image: url('imagelink');
font-family: "Helvetica Neue", HelveticaNeue, helvetica, "Lucida Grande", arial, sans-serif;
color: #898989;
background: #e6e6e6;
}
 
Back
Top