Title: Unnumbered Lists
Last modified: August 21, 2016

---

# Unnumbered Lists

 *  [incider](https://wordpress.org/support/users/incider/)
 * (@incider)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/unnumbered-lists/)
 * Try as I might with CSS customizations, etc., I cannot get bullets to appear 
   in my unnumbered lists on posts and pages. See the page below for an example.
   What’s the trick?
 * [http://powellswood.com/a-northwest-garden/things-to-remember-while-at-the-garden/](http://powellswood.com/a-northwest-garden/things-to-remember-while-at-the-garden/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [linux4me2](https://wordpress.org/support/users/linux4me2/)
 * (@linux4me2)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/unnumbered-lists/#post-4333162)
 * It looks like the problem with the absent bullets is this declaration on about
   line 80 of your theme’s style.css:
 *     ```
       ul, li {
           display: inline-block;
       }
       ```
   
 * If I comment out that line, the bullets appear in the “Things to Remember” section
   of the page.
 * The other thing I noticed is that you have a couple of errors on the page:
    `"
   NetworkError: 400 Bad Request - http://fonts.googleapis.com/css?family="` That
   error is because the full URL for custom fonts from Google Web Fonts isn’t complete.
 * Then you have:
    `TypeError: $ is not a function` The latter is in jquery.fittext.
   sizing.js, which is not set up to use the jQuery noconflict mode that the rest
   of WordPress uses, which substitutes “jQuery” for the dollar sign in code.
 *  Thread Starter [incider](https://wordpress.org/support/users/incider/)
 * (@incider)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/unnumbered-lists/#post-4333202)
 * Thanks for the tip. That allowed me know what I needed to do, so I defined the
   following in my custom CSS and used the new ul type:
 *     ```
       li ul.bullet {
       	display: list-item;
       	vertical-align: text-bottom;
       }
       ```
   
 * Can you clarify what the full URL for custom fonts actually is?
 *  [linux4me2](https://wordpress.org/support/users/linux4me2/)
 * (@linux4me2)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/unnumbered-lists/#post-4333203)
 * The URL for the fonts depends on which fonts you intend to use. You can see how
   it works by looking at the [Google Fonts site](http://www.google.com/fonts). 
   You choose the fonts you want to use, and the “family” variable in the URL is
   filled out with their names.
 * I wonder, though, if the error is popping up because you haven’t configured custom
   fonts somewhere, either in the theme or in a plugin you have installed. Maybe
   you just need to choose the fonts you want to include, and the URL will be completed
   with the corresponding font family(ies)?
 *  Thread Starter [incider](https://wordpress.org/support/users/incider/)
 * (@incider)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/unnumbered-lists/#post-4333207)
 * Well, I guess I’ll leave that for another day. That’s something coming from the
   theme or plugin, as you guess, and I don’t the answer!
 *  Theme Author [Schwarttzy](https://wordpress.org/support/users/schwarttzy/)
 * (@schwarttzy)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/unnumbered-lists/#post-4333349)
 * Adventure is about to get an update that will make the CSS much easier for the
   average user to edit.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Unnumbered Lists’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/adventure/4.1/screenshot.png)
 * Adventure
 * [Support Threads](https://wordpress.org/support/theme/adventure/)
 * [Active Topics](https://wordpress.org/support/theme/adventure/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/adventure/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/adventure/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [Schwarttzy](https://wordpress.org/support/users/schwarttzy/)
 * Last activity: [12 years, 4 months ago](https://wordpress.org/support/topic/unnumbered-lists/#post-4333349)
 * Status: not resolved