1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

remove the list item dot?

Discussion in 'CSS' started by mokimofiki, Jan 20, 2010.

  1. #1
    mokimofiki, Jan 20, 2010 IP
  2. Dogs_and_things

    Dogs_and_things Active Member

    Messages:
    97
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #2
    In List-style type properties you can learn about the different list-style properties.

    You are probably looking for:
    #news li {
        list-style:none;
    }
    
    Code (markup):
    And I believe you should change
    ul#news {
        padding:5px;
        float:left;
        width:600px;
        margin: 0px;
    }
    
    Code (markup):
    into
    #news {
        padding:5px;
        float:left;
        width:600px;
        margin: 0px;
    }
    
    Code (markup):
    and move this
    <style>
    .news_wrap{
        float:left;
    }
    .news_title{
        float:left;
        padding: 4px;
        font-size:12px;
        font-weight:bold;
    }
    ul#news {
        padding:5px;
        float:left;
        width:600px;
        margin: 0px;
    }
    </style>
    
    Code (markup):
    to your <head> section.

    Place it inside
    <style type="text/css">
    A:link {color: white; text-decoration: none;}
    A:visited {color: white; text-decoration: none;}
    A:active {color: white; text-decoration: none;}
    A:hover {color: white; text-decoration: underline overline;}
    </style>
    
    Code (markup):
    so that it looks like
    <style>
    A:link {color: white; text-decoration: none;}
    A:visited {color: white; text-decoration: none;}
    A:active {color: white; text-decoration: none;}
    A:hover {color: white; text-decoration: underline overline;}
    .news_wrap{
        float:left;
    }
    .news_title{
        float:left;
        padding: 4px;
        font-size:12px;
        font-weight:bold;
    }
    ul#news {
        padding:5px;
        float:left;
        width:600px;
        margin: 0px;
    }
    </style>
    Code (markup):
     
    Dogs_and_things, Jan 21, 2010 IP