Title: Formatting  lists
Last modified: August 21, 2016

---

# Formatting lists

 *  Resolved [aschaevitz](https://wordpress.org/support/users/aschaevitz/)
 * (@aschaevitz)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/formatting-lists/)
 * I would like to remove the bullets on the unordered list. I created an ‘intelliwidget’
   folder containing an ‘intelliwidget.css’ document in my Canvas child folder. 
   I put the following code in the css:
    .intelliwidget-menu { list-style: none;}.
   intelliwidget-menu-item { list-style: none; } But that had no effect, so I obviously
   am doing something wrong. I could use some assistance. Thanks, Alan
 * [http://wordpress.org/plugins/intelliwidget-per-page-featured-posts-and-menus/](http://wordpress.org/plugins/intelliwidget-per-page-featured-posts-and-menus/)

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

 *  Plugin Author [lilaeamedia](https://wordpress.org/support/users/lilaeamedia/)
 * (@lilaeamedia)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/formatting-lists/#post-4454381)
 * Child elements often inherit styles from CSS selectors of which you may not be
   aware. It is possible that your widget class is injecting a style attribute that
   is not being overridden by the intelliwidget stylesheet.
 * If you can send me a link to the web page in question, I can take a look at where
   the offending bullet is coming from.
 * You can also “inspect element” in your browser to see the styles that are being
   applied to the element if you would like to research on your own. Please let 
   me know either way so I may close the ticket.
 * Thanks for using IW!
 * -jf
 *  Thread Starter [aschaevitz](https://wordpress.org/support/users/aschaevitz/)
 * (@aschaevitz)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/formatting-lists/#post-4454405)
 * Thanks for your very rapid reply! I am impressed. Examples of pages that exhibit
   the bullets using Intelliwidget would be:
    [http://www.mousesquadca.org/donate/](http://www.mousesquadca.org/donate/)(
   references the Canvas Header WP Nav menu) [http://www.mousesquadca.org/our-mission/](http://www.mousesquadca.org/our-mission/)(
   references a custom WP Nav menu) [http://www.mousesquadca.org/media-center/](http://www.mousesquadca.org/media-center/)(
   references a different custom WP Nav menu plus a text entry )
 * I very much appreciate your assistance,
    Alan
 *  Plugin Author [lilaeamedia](https://wordpress.org/support/users/lilaeamedia/)
 * (@lilaeamedia)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/formatting-lists/#post-4454458)
 * The bullets are coming from the “.widget ul” selector in the parent theme stylesheet.
 * Add this to your child theme stylesheet (not the intelliwidget stylesheet):
 *     ```
       .widget.widget_intelliwidget ul {
         list-style-position: outside;
         list-style-type: none;
       }
       ```
   
 * Update: I was also able to get the same result by adding this to the [theme]/
   intelliwidget/intelliwidget.css stylesheet:
 *     ```
       .widget.widget_intelliwidget ul {
           list-style:none;
       }
       ```
   
 * Let me know if you have any other questions.
 * Thanks,
 * -jf
 *  Thread Starter [aschaevitz](https://wordpress.org/support/users/aschaevitz/)
 * (@aschaevitz)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/formatting-lists/#post-4454486)
 * Thank you very much. That did the trick.

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

The topic ‘Formatting lists’ is closed to new replies.

 * ![](https://ps.w.org/intelliwidget-per-page-featured-posts-and-menus/assets/icon-
   128x128.png?rev=1105289)
 * [IntelliWidget Per Page Custom Menus and Dynamic Content](https://wordpress.org/plugins/intelliwidget-per-page-featured-posts-and-menus/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/intelliwidget-per-page-featured-posts-and-menus/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/intelliwidget-per-page-featured-posts-and-menus/)
 * [Active Topics](https://wordpress.org/support/plugin/intelliwidget-per-page-featured-posts-and-menus/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/intelliwidget-per-page-featured-posts-and-menus/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/intelliwidget-per-page-featured-posts-and-menus/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [aschaevitz](https://wordpress.org/support/users/aschaevitz/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/formatting-lists/#post-4454486)
 * Status: resolved