Yep -- I've tried it out for you and it works for me (with my own image) as long as all files are in the same directory...
Additionally, in order to get your positioning to work you'll need to add 'position:absolute;' to invoke absolute positioning>>
#midfeature{
margin:0px;padding:0px;
background-image: url(photocontest.jpg);
background-repeat: no-repeat;
background-position: right top;
width:585px;
height:358px;
z-index:5;
position:absolute;
left: 25%;
top: 135px;
overflow: hidden;
}
Main Topics
Browse All Topics





by: RoonaanPosted on 2005-07-24 at 11:14:45ID: 14514330
The image url should be relative to the css file, and not to the html file. Are you sure the image is in the same folder as the css file is?
-r-