Background Image

J

jpmaster

Hi there, first of all thanks for all previous help.

I have another question, how can I avoid the tiling of a
background image?

Thank you again for your support and help.

Regards,

jpmaster
 
C

Chuck

I am not 100% for sure but I think you would have to make the picture
bigger. The picture is going to tile if it is not big enough to take up the
whole page.
 
A

Anders Eriksson

I have another question, how can I avoid the tiling of a
background image?
You need to use CSS.

If you add this to your html page, inside head, then the background image
will not tile

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


Look up the body tag in CSS for more info about different attribs.

TopStyle is a really good freeware/shareware application for creating CSS.

http://www.bradsoft.com/topstyle/

Best Wishes!

// Anders
 
Top