My background image tiles on the page, how can I stop that. Thanks
T Trevor L. Jul 18, 2006 #2 TonyMast said: My background image tiles on the page, how can I stop that. Thanks Click to expand... 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>
TonyMast said: My background image tiles on the page, how can I stop that. Thanks Click to expand... 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>