|
Re: Help with my webpage
Yup.
Is your background picture set on the <body> tag? If so, use CSS to lay it out. You should really be using CSS all the way through your document.
Put this in your head section:
<style type="text/css">
body {background-image: url(images/yourbackgroundimage.jpg); background-repeat: no-repeat;}
</style>
|