Title: List bullet
Last modified: August 18, 2016

---

# List bullet

 *  [bikoy](https://wordpress.org/support/users/bikoy/)
 * (@bikoy)
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/)
 * why does my < ?php the_category() ? > appear like its under an unordered list?
   with the dot beside it?

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/topic/list-bullet/page/2/?output_format=md) 
[→](https://wordpress.org/support/topic/list-bullet/page/2/?output_format=md)

 *  [unoamigo](https://wordpress.org/support/users/unoamigo/)
 * (@unoamigo)
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/#post-59233)
 * Hmm, well it is supposed to appear as an unordered list.
    The dot your referring
   to can be eliminated through css. That is if I’m thinking of the right thing…
   Do you have an example link?
 *  [Mark (podz)](https://wordpress.org/support/users/podz/)
 * (@podz)
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/#post-59241)
 * Your menu items are controlled by one of several tags:
    #menu ul #menu ul ul #
   menu ul li #menu ul ul li If a style type is not defined, then your browser will
   default to showing a black circle(bullet, disc) next to each item in a menu. 
   If you define the style you want, you can remove the disc. Do this by including
   this in the CSS declaration for the items that you want not to have the black
   circle; list-style: none; For instance, to remove the black circle from an unordered
   list element: #menu ul li { list-style: none; }
 *  Thread Starter [bikoy](https://wordpress.org/support/users/bikoy/)
 * (@bikoy)
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/#post-59256)
 * Okay. I got it. Thank you!! 🙂
 *  Anonymous
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/#post-59406)
 * how would you use categories without them being in li and ul tags? i have fiddled
   with my CSS and tried to include the category in one sentence, but it is still
   treated as though it is in a list. is there a way to not use list styles?
 *  [Sushubh](https://wordpress.org/support/users/sushubh/)
 * (@sushubh)
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/#post-59407)
 * podz already descibed to make that work using css.
 *  Anonymous
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/#post-59457)
 * Oh I understand now sorry!
 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/#post-59466)
 * Unless you are refering to a post you deleted, no need for apologies. Glad you
   got it.
 *  [reddwarf](https://wordpress.org/support/users/reddwarf/)
 * (@reddwarf)
 * [21 years, 11 months ago](https://wordpress.org/support/topic/list-bullet/#post-59480)
 * Thanks for this, I was wondering how to get rid of the bullet next to my archives.
   🙂
 *  [alana](https://wordpress.org/support/users/alana/)
 * (@alana)
 * [21 years, 4 months ago](https://wordpress.org/support/topic/list-bullet/#post-59706)
 * I have added every sinlge instance of menu tags in my css and it is not removing
   the bullet list when the category tag is active:
    [Moderated]
 * What now? [http://thevictimdotorg.alanahoney.com/wp/index.php]
 *  [Mark (podz)](https://wordpress.org/support/users/podz/)
 * (@podz)
 * [21 years, 4 months ago](https://wordpress.org/support/topic/list-bullet/#post-59707)
 * This does:
 * ul li {
    list-style:none; }
 * Put at the bottom of the css.
 *  [elketer](https://wordpress.org/support/users/elketer/)
 * (@elketer)
 * [21 years, 4 months ago](https://wordpress.org/support/topic/list-bullet/#post-59708)
 * But what about that line break?
 * 🙂
 *  [Mark (podz)](https://wordpress.org/support/users/podz/)
 * (@podz)
 * [21 years, 4 months ago](https://wordpress.org/support/topic/list-bullet/#post-59709)
 * The dot and the line break can be sorted simply by looking at how WP handles 
   it on a default install and then carefully changing that.
 * This sort of question, which has been asked and answered many many times, basically
   equates to “Do it the way WP wanted to it in the first place”.
 *  [elketer](https://wordpress.org/support/users/elketer/)
 * (@elketer)
 * [21 years, 4 months ago](https://wordpress.org/support/topic/list-bullet/#post-59710)
 * [Moderated – comments removed]
 *  [Mark (podz)](https://wordpress.org/support/users/podz/)
 * (@podz)
 * [21 years, 3 months ago](https://wordpress.org/support/topic/list-bullet/#post-59711)
 * You want your information to appear, in a line, with no dots or line breaks.
   
   That really is how WP does it ‘out of the box’
 * It is styled, with css, to display everything ‘inline’ despite the fact that 
   there are list elements in there.
    Applying the default code, with the default
   CSS will do 2 things: – you will get your inline behaviour – you will probably
   get ugly character sizes for that page.
 * Both are fixable, but if I say to do x, y and z, it still equals putting back
   what was there in the first place and I can’t dress that up any differently.
 * WordPress is ridiculously easy to customise, as looking round the many thousands
   of sites will attest to.
    And I do offer support – quite a lot.
 * Now..are you going to be constructive, or continue to be hostile ?
 *  [davincim](https://wordpress.org/support/users/davincim/)
 * (@davincim)
 * [21 years, 2 months ago](https://wordpress.org/support/topic/list-bullet/#post-59714)
 * Need to resurrect this topic, hopefully briefly.
 * I’ve inserted the code as described here including podz’ instruction to add:
 * `ul li {
    list-style:none; }
 * But the arrow bullets are still showing up in my sidebar. Here’s my [site](http://familywebwatch.com/blog/)
   if someone would take a moment to look at it. 🙂
 * Once I figure out how to turn those off, I think I can make a class to keep the
   list in my posts with bullets and the sidebar elements off.
 * Suggestions please?

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/topic/list-bullet/page/2/?output_format=md) 
[→](https://wordpress.org/support/topic/list-bullet/page/2/?output_format=md)

The topic ‘List bullet’ is closed to new replies.

 * 20 replies
 * 13 participants
 * Last reply from: [ultrazero](https://wordpress.org/support/users/ultrazero/)
 * Last activity: [19 years, 6 months ago](https://wordpress.org/support/topic/list-bullet/page/2/#post-59753)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
