View Full Version : background help


amby
02-16-2004, 10:26 AM
i wanted if possible the background on my page to have just one picture if you know what i mean, say on the left and then the hyperlinks on the left, iv tried all day to do this how can I? :confused: :flower:

salomeyasobko
02-16-2004, 10:51 AM
err.. huh? do you have an example or can you explain yourself a little bit better? thanks! :D

toolman
02-16-2004, 11:45 AM
I'm not sure if this is what you mean, but try this:

<style type="text/css">
body
{
background-image:
url("your image.gif");
background-repeat:
no-repeat;
background-attachment:
fixed
}
</style>


Or

<style type="text/css">
body
{
background-image:
url("your image.gif");
background-repeat:
no-repeat;
background-position: #;
center center
}
</style>
Change the # to a number where you want the image to appear

amby
02-17-2004, 12:24 PM
thats perfect thankyou