"davecheet" webforumsuser (AT) macromedia (DOT) com wrote:
Quote:
Hi Folks,
Is there any way of stopping a background image tiliting I'd like to place an image in just in one cell - not behind the whole page and be able to write over the top of it. Whenever I place an image it automatically repeats itself and the cell expands.
Any help would be great.
Cheers
Dave |
Cut code below and paste between <head> tags of your pages code or you
can link it to an external style sheet. If you do the lata then dont
include the lines <style type="text/css") of </style>
<style type="text/css")
..mybgimage {
background-image: url(images/bg_image.gif);
background-repeat: no-repeat;
}
</style>
Attach the style, mybgimage to the table or td cell where you want the
bg image to appear. ie <td class="mybgimage">This is where the non
tiling bg image will appear</td>
Change 'images' to the name of the folder in which YOUR bg image is
stored and 'bg_image.gif' to the name of YOUR bg image.