How to get rid of weird box on side of link list

Discussion in 'CSS' started by wroberts, Apr 14, 2011.

  1. #1
    I cant get rid of a weird box on the left side of my link list
    and also the outline of the links on the left is thinner than the outline on the right

    it is on http://www.weswave.com/

    here is my css:
    
    a:link,a:visited
    {
    display:block;
    font-weight:bold;
    font-family:arial;
    color:#FFFFFF;
    background-color:#888888;
    width:165px;
    text-align:center;
    padding:5px;
    }
    a:hover {background-color:#777777;}
    
    ul, li {
    	border:2px solid black;
    	border-collapse:collapse;
    	list-style-type: none;
    	}
    
    div.linktable {
    	float:left;
    	margin-left:8px;
    	}
    
    Code (markup):

    Please help!
     
    wroberts, Apr 14, 2011 IP
  2. wroberts

    wroberts Peon

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Nevermind I fixed it
     
    wroberts, Apr 14, 2011 IP
  3. ayekaye01

    ayekaye01 Peon

    Messages:
    214
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Hi!
    change this:

    ul, li {
    border:2px solid black;
    border-collapse:collapse;
    list-style-type: none;
    }
    to this:

    ul, li {
    border:0;
    border-collapse:collapse;
    list-style-type: none;
    }
     
    ayekaye01, Apr 19, 2011 IP