When you ask of help on this sort of topic you should send links to all the css files for your site. The solution is probably to make sure that the background, or background-repeat property is set to "no-repeat" for the image in question. I am guessing it is in the file spring_flavour.css but I can't find the file. Please post it or check to make sure that the no-repeat value is there. All the best, Jay
You need to set this value: /* header --------------------------------------------------*/ #header { background-color:#F0F9F9; background-image:url(images/spring_flavour/header.gif); [COLOR="RoyalBlue"]background-repeat: no-repeat;[/COLOR] } Code (markup): although you may need to have a look at this just in case it's this that's setting the value (image to repeat vertically): /* container --------------------------------------------------*/ #container { padding-top:0; border-top:30px solid white; background:white url(images/spring_flavour/container_bg.gif) 500px 0px [COLOR="Red"]repeat-y;[/COLOR] } Code (markup):