Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why is my image still tiled???

Status
Not open for further replies.

lmarshall

MIS
Joined
Jun 11, 2002
Messages
108
Location
US
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 &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<style type=&quot;type/css&quot;>
body{
background-image: url(&quot;homeback.gif&quot;);
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
</style>
</head>

<body background=&quot;homeback.gif&quot;>



</body>
</html>
 
I could've sworn I just answered this question, but anywho, here it is:
<body background=&quot;homeback.gif&quot; bgproperties=fixed>
I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top