image is repeating

Discussion in 'HTML & Website Design' started by web-rover, Nov 29, 2005.

  1. #1
    On our Xbox 360 News site, the logo is repeating at the top

    Any idea how to fix that?

    thanks
     
    web-rover, Nov 29, 2005 IP
  2. smashingjay

    smashingjay Peon

    Messages:
    27
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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
     
    smashingjay, Nov 29, 2005 IP
  3. mcfox

    mcfox Wind Maker

    Messages:
    7,526
    Likes Received:
    716
    Best Answers:
    0
    Trophy Points:
    360
    #3
    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):
     
    mcfox, Nov 29, 2005 IP