background help pls

liunx

Guest
i have a picture i want to set as my background however it is big and it was given to me to put on a site, id like to set it as a fixed background and only have one of the picture on the page instead of the picture repeating itself any ideas? thanx<!--content-->If you are going to do a fixed backgrouns you are better off using the CSS attributes<br />
for complete control: <br />
<br />
<HTML> <br />
<HEAD> <br />
<TITLE> Fixed background using styles </TITLE> <br />
<STYLE TYPE="text/css"> <br />
BODY { background-repeat:no-repeat;background-attachment:fixed;background-position:center center;background-image:url("piraat.gif") } <br />
</STYLE> <br />
</HEAD> <br />
<BODY > <br />
<font face="Arial" Size=2>etc... <br />
Nederlands:<br />
De background-positie kan zijn left/center/right voor de x as en <br />
top/center/bottom voor de y as. Met IE5.5 kun je een numerieke waarde geven <br />
om de x/y coordinaten in pixels te specificeren.<br />
English:<br />
The background-position can left/center/right for x axis and <br />
top/center/bottom for the y axis. With IE5.5 you can use a numeric value to <br />
specify the x/y co-ordinates in pixels<br />
</font><br />
</BODY><br />
</HTML><br />
<br />
:rocker:<!--content-->
 
Back
Top