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.
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:
Thank you. I found the offending CSS. .entry ul li:before, #sidebar ul ul li:before { content: "\00BB \0020"; } Code (markup):