CSS Issue ???

Discussion in 'CSS' started by kolucoms6, Jul 13, 2010.

  1. #1
    Below is my CSS :

    Now if you look at my site i.e http://fullpcrepair.com/

    Black border just below the flag are look like getting Repetitive.

    Where am I making mistake ?


    Here is the HTML :

     
    kolucoms6, Jul 13, 2010 IP
  2. radiant_luv

    radiant_luv Peon

    Messages:
    1,327
    Likes Received:
    34
    Best Answers:
    1
    Trophy Points:
    0
    #2
    You've a style element "div#menu" which has a background image and by default background repeats; so you'll have to include no-repeat to the background.

    div#menu {
    padding-top:10px;
    padding-bottom:10px;
    color: #2660B7;
    text-decoration: none;
    font-weight:bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size:12px;
    background:#E7E7E7;
    text-align:center;
    background:url(../images/menu_back.gif) no-repeat;
    }
     
    radiant_luv, Jul 13, 2010 IP
  3. kolucoms6

    kolucoms6 Active Member

    Messages:
    1,198
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    75
    #3
    kolucoms6, Jul 13, 2010 IP
  4. radiant_luv

    radiant_luv Peon

    Messages:
    1,327
    Likes Received:
    34
    Best Answers:
    1
    Trophy Points:
    0
    #4
    Reduce the width (somewhere around 500px) specified for #slideshow
     
    radiant_luv, Jul 13, 2010 IP