Viewing 4 replies - 1 through 4 (of 4 total)
  • http://codex.wordpress.org/Styling_Lists_with_CSS

    Will help you figure out the WordPress lists. It can be really challenging dealing with nested lists in the sidebar.

    #sidebar li {
    list-style: none;
    }

    Will help but you have to identify which LI is being used on your Pages template tag.

    Thread Starter sphagnum

    (@sphagnum)

    I don’t have any UL or LI. I’m just using the call function:

    <?php wp_list_pages(‘arguments’); ?>

    It calls all the pages your written and lists them by title. I just want to know if there is an arguement for that function that lists w/o bullets…

    There is no argument for listing bullets. When the page is generated (viewed) it returns the list using LI XHTML tags.

    You control whether or not you have bullets in the Pages list by changing your style.css style sheet section, as explained in the article, to feature no bullets.

    Thread Starter sphagnum

    (@sphagnum)

    Ah, I see what you’re going after now. Thanks so much, did the trick.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘List pages without bullets’ is closed to new replies.