I need a little help with something on my wordpress based site. It is in the sidebar on the right hand side. In the menu located there I have a "." that is to the left of each item. I did not mean for this to show up and not sure how I got it there. I suspect it is like a piece of leftover code when I was trying some things out that I ended up removing. Incase you need to see the code I will include a small bit of it here. <div class="sidebar-box"> <h3>Pages</h3> <ul> <?php wp_list_pages('title_li='); ?> </ul> </div> Code (markup): The page can be seen at http://www.l;aughsonthenet.com I am sure it is going to be something very simple. But I am just having a big brain fart trying to figure it out tonight. Thank you in advance for your help.
its looks like a dot that is part of the themes code. but if youre using wordpress then you can probably edit it from css.
Using list-style-type:none; in your CSS file (where your ul element is defined) will make these bullets disappear.