• OK everything on my blog is good except one small problem which I am sure someone will having no problem helping me out with.

    I did a quick search and got some results but they didn’t work for me.

    What I am trying to do is remove the bullets from my sidebar / links block (www.daleanthony.com).

    Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • You are looking for CSS styling, you need to insert a div around that list and add this to it’s properties:

    list-style: none;

    If you are confused by this do some googling for “css” or “list styling”

    You don’t need to insert another div at all. Your current sidebar information/links are already inside a containing div

    #sidebar. Use that instead.

    #sidebar ul {
    list-style-type:none;
    }

    #sidebar li {
    list-style-type:none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Sidebar Link Bullets?’ is closed to new replies.