Fri, 2010-09-03 20:56
Hey,
Basically, whenever I try to insert and form of "no-reapeat" it makes the image disappear in the window in DreamWeaver.
I have no idea why it is doing this, and google or this site has nothing on what may be the problem
i have tried these in the css already;
background-repeat: no-repeat;
and also putting
no-repeat; after my url
here is my code for this part:
body { background-repeat: width:100%; height:100%px; margin: 0; padding: 0; overflow: hidden; position:absolute; height:100%; width:100%; line-height: 1.7em; font-family: Georgia, "Times New Roman", Times, serif; font-size: 12px; color: #666666; background: #ffffff url(images/border.jpg); }
Thanks 
Fri, 2010-09-03 21:43
#1
yer code's weird
body { background-repeat: <-- why is this empty?? width:100%; height:100%px; <-- double unit error, plus you're repeating yourself margin: 0; padding: 0; overflow: hidden;<--really bad idea on the body element position:absolute;<--bad idea on the body element height:100%;<--this really makes overflow: hidden a bad idea width:100%; line-height: 1.7em; font-family: Georgia, "Times New Roman", Times, serif; font-size: 12px; color: #666666; background: #ffffff url(images/border.jpg); }
Why not
remove background-repeat: sitting there alone.
in the condensed shorthand:
background: #fff url(theimage.jpg) no-repeat;
?
Fri, 2010-09-03 23:48
#2
Also, dreamweaver is a not a
Also, dreamweaver is a not a browser. Don't view your site in it. it doesn't matter what it looks like, no one else will view your site in dreamweaver. use a browser.

