Forum Moderators: not2easy
#top {
background: url(../images/top-pic5.jpg) transparent no-repeat bottom right;
color:#000;
/* border-bottom:1px #666 solid; */
padding-top:10px;
padding-left:20px;
text-align:left;
width:740px;
voice-family: "\"}\"";
voice-family:inherit;
width:749px
}
Any suggestion/ideas appreciated. Thanks
background: url(../images/top-pic5.jpg) transparent no-repeat bottom right;
You should also place any color definition before the url like so (this is probalby why IE repeats the image):
background: transparent url(../images/top-pic5.jpg) right;
...and finally to repeat the bg vertically:
background: transparent url(../images/top-pic5.jpg) repeat-y right;
ooops sorry I posted a wrong piece of code (copy/paste human error), here's the real problem:
so it displays ok on mozilla firefox and IE but safari screw this up
/*background: url(../images/framebkgd8.jpg); background-repeat:repeat-y;position:relative;
margin-right:auto;
margin-left:auto;
margin-top:0px;
padding:0px;
text-align:left;
width:750px;
voice-family: "\"}\"";
voice-family:inherit;
width:770px
} */
thanks for your help