Need help to remove ugly strip

Discussion in 'HTML & Website Design' started by devin, Feb 1, 2007.

  1. #1
    my first sig link site has a orange strip underneath the header on every page. someone accidentally coded that in. can someone tell me how to get rid of that orange strip (so that it shows the white background)?
     
    devin, Feb 1, 2007 IP
  2. Clive

    Clive Web Developer

    Messages:
    4,507
    Likes Received:
    297
    Best Answers:
    0
    Trophy Points:
    250
    #2
    That's easy, the orange strip is an image
    You can remove it by editting the following CSS definition:
    body {
    	margin-left: 0px;
    	margin-top: 0px;
    	margin-right: 0px;
    	margin-bottom: 0px;
    	background-image: url(../newsite/pix/backrep.jpg);
    background-repeat: repeat-x
    }
    Code (markup):
    Remove the "background-image" line and that should be it.
     
    Clive, Feb 1, 2007 IP
  3. Clive

    Clive Web Developer

    Messages:
    4,507
    Likes Received:
    297
    Best Answers:
    0
    Trophy Points:
    250
    #3
    Good, I see changes, one more background image to edit. Defined here:
    #top01 {
    	position:absolute;
    	left:183px;
    	top:107px;
    	width:100%;
    	height:22px;
    	z-index:10;
    	background-image: url(pix/top01.gif);
    }
    Code (markup):
    You need to crop it to the site's width and the blue line will go..
    If I take a look at the bottom however, I see you might want to keep the aspect of the site.
    Or you can also crop the botom background image, too.
     
    Clive, Feb 1, 2007 IP
    devin likes this.