Hello. My image back ground is repeating have tried no-repeat but then makes it not show?
background:url(../image/body.png) repeat top center;
and also can not get it stretched to 100% height and with
background: #000; background:url(../image/body.png) no-repeat top center; color: #fff; font-family: Arial, Helvetica, sans-serif; margin: 0px; padding: 0px;
Try background-image instead of background when defining the body.png. Right now, you are defining background twice essentially.
background-image
background
body.png
I fixed thank you.
Hello. My image back ground is repeating have tried no-repeat but then makes it not show?
background:url(../image/body.png) repeat top center;
and also can not get it stretched to 100% height and with
Try
background-imageinstead ofbackgroundwhen defining thebody.png. Right now, you are definingbackgroundtwice essentially.I fixed thank you.