i am trying to add an image to the upper right hand side of my page using backgroung image i have managed to get it working in FF but not in IE #tomatoe { clear:both; background:url(/templates/10/images/girl.gif)no-repeat top right; width: 530px; position:absolute; right:5px; top:5px; z-index: 10; height: 150px; } HTML: here is the page
First glance I'm guessing it's because you have no space between the no-repeat and the url(). Also, you should really re-edit that image and use a matte color (take a sample of that background and maybe it'll work).
Try this out and see if it works: CSS #tomatoe { position: absolute; text-align: left; right: 10px; z-index: 10 } Code (markup): HTML <img id="image" src="imagename.jpg" alt="Alt Text Of Image" /> Code (markup):