css help needed

Discussion in 'CSS' started by msultani, Oct 20, 2008.

  1. #1
    My site is www.nookeet.com and I am using this in my footer, but I see little bullets next to each link, how do I get rid of those bullets.

    .footer-template {
    background-color:#222;
    height: 220px;
    width: 994px;
    float:left;
    }
    .footer {
    clear : both;
    background : #fff;
    width : 994px;
    font-size : 12px;
    color : #000;

    }
    .footer-box {
    width: 315px;
    height: 180px; /*ie fix*/
    background-color:#222;
    float:left;
    padding: 10px 0px 10px 10px
    }
    .footer-links ul {
    width: 280px;
    }

    .footer-links li {
    border-width: 1px 0;
    }

    .footer-links li a {
    color: #999;
    display: block;
    font-size:12px;
    font-family:Arial, Helvetica, sans-serif;
    padding: 4px 0px 4px 15px;
    text-decoration: none;
    margin: 3px 0px 0px 0px;
    background-color:#292929;
    }

    * html #.footer-links li a { /* make hover effect work in IE */
    width: 285px;
    }

    .footer-links li a:hover {
    background: #333;
    color:#FFFFFF;
    }

    Thanks
     
    msultani, Oct 20, 2008 IP
  2. tobbesanda

    tobbesanda Guest

    Messages:
    9
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    .footer-links ul {
    width: 280px;
    list-style: none;
    }

    Should do the trick
     
    tobbesanda, Oct 20, 2008 IP