• Hello,

    I can not figure out how to remove the bullets from Page lists. In the past I did this by editing the main wp-layout.css page or functions_template_post.php (i think that was correct) in the wp-includes directory. Now, in 2.1.2 there is a new file structure. I’ve edited out all references to ‘li’ or ‘ul’ tags in post_template.php – wp_list_pages function and I’m still getting bullets! Any thoughts? Thanks!

    Scott

Viewing 7 replies - 1 through 7 (of 7 total)
  • I wouldn’t touch any of the core files (like functions_template_post). It is relatively easy to handle the issue with CSS.
    Find the class of the list/items and add to your stylesheet something like:
    .whateverclass {list-style-type: none;}
    The bullets should be gone.

    Thread Starter Scott

    (@olsonsp4c)

    Where do I find this stylesheet, because wp-layout.css is not longer around? thanks!

    Scott

    your theme folder… wp-content/themes/nameofyourtheme/

    probably titled style.css

    Thread Starter Scott

    (@olsonsp4c)

    thanks. I added this to the class pagenav and there was no change, still bulleted. any other thoughts?

    Scott

    Probably, you didn’t add the code in the right place: hundreds of themes are using this line of code, so it should work. To find out your classes:
    https://codex.www.ads-software.com/Finding_Your_CSS_Styles

    I’m actually having the same problem. I’ve tried everything. I use the Firefox add-on, Firebug to view the HTML and CSS of the page, and have tried nearly every combination I can think of to get rid of the bullets. I have even made a

      with a single

    • in the content area of the page and can change color and size, etc. with CSS, but those freaking bullets won’t go away.

    Can anyone help me with this? My WordPress site is https://www.iebwebdesign.com/wordpress

    Thanks,

    Cameron

    sorry…I didn’t know that was going to post it in HTML. That is supposed to read:

    “I have even made a ul with a single li that just says “list 1″ in the content area of the page…”

    Sorry for the confusion.

    Cameron

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Page List Bullets’ is closed to new replies.