Background image

T

Trevor L.

TonyMast said:
My background image tiles on the page, how can I stop that.

Thanks

Use this style
body {background: url(myimage.jpg) no-repeat;}

This can either be in an externally linked style sheet or in the head
<head>
............
<style type="text/css">
body {background: url(myimage.jpg) no-repeat;}
</style>
.........
</head>
 
Top