I am using Dreamweaver MX. My image always shows up tiled if the screen area is more than 600x800 and it doesn't show the whole image if it is any less than that. I need it so that it will work with all screen areas. Is there any way to do that and why won't this code work?
Thanks!
lmarshall
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="type/css">
body{
background-image: url("homeback.gif"
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
</style>
</head>
<body background="homeback.gif">
</body>
</html>
Thanks!
lmarshall
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="type/css">
body{
background-image: url("homeback.gif"
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
</style>
</head>
<body background="homeback.gif">
</body>
</html>