header/banner problem.....top repeat-x?????

Discussion in 'HTML & Website Design' started by tonyfloyd, Jun 28, 2008.

  1. #1
    hi all.....

    header/banner keeps repeating on my site.....how do i get banner to show correctly?

    do i remove top repeat-x???

    any thoughts?

    site is criticas gastronomicas****com****

    thanks
    tony
     
    tonyfloyd, Jun 28, 2008 IP
  2. oxygren

    oxygren Peon

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hello Tony,

    In order for the background to stop repeating you need to enter this coding into your stylesheets.

    header {
    background-image: url(images/logo.jpg);
    background-repeat: no-repeat;
    }

    I hope this helps. :D
     
    oxygren, Jun 28, 2008 IP
  3. DeeJayEl

    DeeJayEl Peon

    Messages:
    91
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You can also use shorthand if you're feeling fancy:

    background: transparent url(images/logo.jpg) top center no-repeat;
     
    DeeJayEl, Jun 28, 2008 IP