Problems with wordpress CSS, can't remove list-style?

Discussion in 'HTML & Website Design' started by systematical, Feb 20, 2010.

  1. #1
    I am developing a wordpress theme for my girls business but I cannot figure out how to remove the stupid double arrow >> list-style in the sidebar (for li tags) or any other pages like the Reviews page.

    The site is sarahmassagetherapy.com

    Can someone take a look at sarahmassagetherapy.com and tell me what to do? I am a core web developer so my CSS / design skills are not out of this world. I would like to instead have little boxes like the ones you see at the very top of the page for the list style type.
     
    systematical, Feb 20, 2010 IP
  2. broxen

    broxen Peon

    Messages:
    60
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    first, check your #sidebar ul li. It's looks like you declare this selector multiple times (I found 3) so it comes on error.
    Better to declare each selector just once.
    sample code (modify this to match your theme.
    #sidebar ul li {
    list-style-type : none;
    list-style-image : none;
    margin-bottom : 15px;
    }
    PHP:
     
    broxen, Feb 20, 2010 IP
  3. systematical

    systematical Peon

    Messages:
    81
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thank you. I found the offending CSS.

    
    .entry ul li:before, #sidebar ul ul li:before {
    	content: "\00BB \0020";
    	
    	}
    
    Code (markup):
     
    systematical, Feb 20, 2010 IP