10 September 2005, 16:15 UTC#1
Ive got a image thats 350px high.... I want it to be the background for a cell ...
does anyone know any code so it shows it once as a bg, and not to repeat
Attachments
cell.gif · 6 KB
Attachment metadata survives, but the file is absent from the recovered server backup.
10 September 2005, 16:22 UTC#2
QUOTE(wkh @ Sep 10 2005, 05:15 PM)
Ive got a image thats 350px high.... I want it to be the background for a cell ...
does anyone know any code so it shows it once as a bg, and not to repeat
[right][snapback]172172[/snapback][/right]
Is the said cell going to be a iframe?
10 September 2005, 16:24 UTC#3
QUOTE(MADE @ Sep 10 2005, 04:22 PM)
QUOTE(wkh @ Sep 10 2005, 05:15 PM)
Ive got a image thats 350px high.... I want it to be the background for a cell ...
does anyone know any code so it shows it once as a bg, and not to repeat
[right][snapback]172172[/snapback][/right]
Is the said cell going to be a iframe?
[right][snapback]172175[/snapback][/right]
No
10 September 2005, 16:25 UTC#4
One second.
EDIT: Ok, here:
CODE
<style type="text/css">
<!--
body {background-image: url(images/bg1.gif); background-repeat: no-repeat;}
/* Setting the body tag with a background-image attribute
set to background-repeat: no-repeat; will only display the image one time
(repeat is the default setting) */
-->
</style>
10 September 2005, 16:31 UTC#5
QUOTE(MADE @ Sep 10 2005, 04:25 PM)
One second.
EDIT: Ok, here:
CODE
<style type="text/css">
<!--
body {background-image: url(images/bg1.gif); background-repeat: no-repeat;}
/* Setting the body tag with a background-image attribute
set to background-repeat: no-repeat; will only display the image one time
(repeat is the default setting) */
-->
</style>
[right][snapback]172178[/snapback][/right]
nice one