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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top