A neewbi question

windows

Guest
i wont this picture as a background picture<br />
<br />
<!-- m --><a class="postlink" href="http://www.bignosebird.com/sgraphics/bnatural/yell_roc.jpg">http://www.bignosebird.com/sgraphics/bn ... ll_roc.jpg</a><!-- m --><br />
<br />
anyone know a easie way to do that?<!--content--><head><br />
<style><br />
body {<br />
background: #dd6 url("path/to/yell_roc.jpg");<br />
background-attachment: fixed;<br />
background-repeat: repeat-x repeat-y;<br />
background-position: top left;<br />
}<br />
</style><br />
</head><br />
<body><br />
~~~~~etc.~~~~~<br />
<br />
the green bit is utterly optional.<!--content-->, or just add background="image.jpg" to your <body> tag.<!--content-->Thx for the help :) <br />
<br />
I got how you do for the whole page, but if I only wont it in a limited area?, look red in script (didn't worked :().<br />
<br />
<html><br />
<BODY><br />
<center><br />
<br><br />
<br><br />
<table width=70% border=2 cellspacing=10 callpadding=10 bgcolor=#EFDF9C align="center"><br />
<tr background=http://www.bignosebird.com/sgraphics/bnatural/yell_roc.jpg> <td><center><b>Yo all</b></center></td></tr><br />
</table><br />
</BODY><br />
</html><!--content-->welcome to the forums!!!<!--content-->Originally posted by okeeffemarc <br />
welcome to the forums!!! <br />
<br />
Thx :)<!--content--><style><br />
tr.myimagebg {<br />
background: url("path/to/yell_roc.jpg");<br />
}<br />
</style><br />
<br />
////////////<br />
<br />
<table><br />
<tr class="myimagebg"><br />
<td><center><b>Yo all</b></center></td><br />
</tr><br />
</table><!--content--><table width=70% border=2 cellspacing=10 callpadding=10><tr><td background=http://www.bignosebird.com/sgraphics/bnatural/yell_roc.jpg>This should work...<br><br>Does it work?<br><br><br />
</td></tr></table><br />
<br />
<br />
<br />
Try that! :)<!--content-->you should Download <!--more--> the image to your own computer, upload it to your own host computer, and link to it there.<br />
<br />
there can be a couple complications by linking directly to an image on a different host server.<br />
<br />
you should also remember to use quotes around values for good coding practices.<br />
<br />
<html><br />
<head><br />
<title>my test page</title><br />
</head><br />
<body><br />
<center><br />
<br><br />
<br><br />
<table width="70%" border="2" cellspacing="10" callpadding="10" bgcolor="#EFDF9C" align="center"><br />
<tr background="yell_roc.jpg"><br />
<td><br />
<center><b>Yo all</b></center><br />
</td><br />
</tr><br />
</table><br />
</body><br />
</html><br />
<br />
this above will work if you save the image to the same folder that your webpage is saved at.<!--content-->
 
Top