Forum Moderators: open
"background-image:url(url.gif)"
and none of them worked then I used this:
<td style="background-image:url(images/footer2.gif)" colspan="16">
<img id="footer2" width="780" height="28" />
</td>
That worked perfectly except it still has that little icon thing on it that usually only shows up when the image dosn't work. Does anyone know what I can do?
Thanks :)
<Sorry, no screenhots.
See Forum Charter [webmasterworld.com]>
[edited by: tedster at 5:54 am (utc) on Jan. 28, 2007]
Try
<td colspan="16" style="background-image:url(images/footer2.gif); width:780px; height:28px;">
</td>
forgot a ; and " doh!
[edited by: appi2 at 5:30 am (utc) on Jan. 28, 2007]
index.html
images/bgimage.jpg
css/mycss.css
background-image:url(/images/bgimage.jpg);
or
background-image:url(../images/bgimage.jpg);
This first allows you to use the same CSS from anywhere and not have to count dots and slashes.