Background picture

  • Thread starter Thread starter Fred
  • Start date Start date
F

Fred

Hi, I use FP2002 and would like to use a background picture behind the
tables on one of my websites. I've got the picture but can't get it to tile
(if that's the right word). Any ideas. Fred
 
Use CSS. Do you want the image to tile?

table.special { background-image:url(foo.gif); }

Do you NOT want the image to tile?

table.special { background-image:url(foo.gif);background-repeat:no-repeat; }

Either of these will style this table -

<table class="special"...

and the CSS would be placed in the head of the page like this -

<style type="text/css">
<!--
table.special { background-image:url(foo.gif);background-repeat:no-repeat; }
-->
</style>
</head>

(immediately above that closing </head> tag)
 
Back
Top