Title: Bullet Problems
Last modified: August 20, 2016

---

# Bullet Problems

 *  [markdickienb](https://wordpress.org/support/users/markdickienb/)
 * (@markdickienb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/)
 * Hello All,
    Can anyone help me with my CSS problem? I use the Rustik Theme with
   Woo Commerce and on my product descriptions I can not get bullets to show up.
   They appear in the editor but when I publish they are not there. This is the 
   current product I’m trying to fix:
 * [http://keatonandco.com/?product=brown-monogrammed-dinner-napkins](http://keatonandco.com/?product=brown-monogrammed-dinner-napkins)
 * Any help?

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

 *  [Pioneer Web Design](https://wordpress.org/support/users/swansonphotos/)
 * (@swansonphotos)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566047)
 * Please define what text would include bullets…also, if pasting from a Rich Text
   Editor, do not (always include plain text)…use the links in the post/page editor
   to add them…
 *  Thread Starter [markdickienb](https://wordpress.org/support/users/markdickienb/)
 * (@markdickienb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566048)
 * Set of four (4) napkins
    100% cotton Machine washable Monogram is embroidered
   on in your choice of thread colour
 * Those 4 lines are supposed to have bullets. The bullets appear in the editor 
   no problem but when I publish they do not appear.
 *  [Pioneer Web Design](https://wordpress.org/support/users/swansonphotos/)
 * (@swansonphotos)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566054)
 * For:
 * `.products .right_products ul, ul.products {`
 * Try:
 * `list-style-type: square;` (or [other](http://www.w3schools.com/cssref/pr_list-style-type.asp))
 * not `list-style`
 *  [wprock](https://wordpress.org/support/users/wprock/)
 * (@wprock)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566061)
 * Use following CSS. Both CSS are locating in style.css file. you will find and
   replace with my code.
 *     ```
       .products .right_products ul, ul.products {
           list-style: disc;
       }
       .products .right_products ul li {
           margin: 0 20px 0px 16px;
       }
       ```
   
 *  [Pioneer Web Design](https://wordpress.org/support/users/swansonphotos/)
 * (@swansonphotos)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566064)
 * I still suggest using list-style-type
 *  Thread Starter [markdickienb](https://wordpress.org/support/users/markdickienb/)
 * (@markdickienb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566066)
 * That worked but generated another problem when I made the change (I have since
   reverted back to the original). When I make that change I get bullets on my product
   category page between each product and some products get bumped down to the next
   line, displaying only 1 or 2 per line instead of the current three. Is there 
   a way to add the bullets only in the product descriptions and not on the product
   category page?
 *  [wprock](https://wordpress.org/support/users/wprock/)
 * (@wprock)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566068)
 * Revert back to old CSS and try this one
 *     ```
       .description ul.products {
           list-style: disc;
       }
   
       .description ul li {
           margin: 0 20px 0px 16px;
       }
       ```
   
 *  Thread Starter [markdickienb](https://wordpress.org/support/users/markdickienb/)
 * (@markdickienb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566071)
 * Just add that or replace something?
 *  [wprock](https://wordpress.org/support/users/wprock/)
 * (@wprock)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566074)
 * just add
 *  Thread Starter [markdickienb](https://wordpress.org/support/users/markdickienb/)
 * (@markdickienb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566075)
 * Tried adding it to that same area, didn’t change anything.
 * Anything else I can try?
 *  [wprock](https://wordpress.org/support/users/wprock/)
 * (@wprock)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566077)
 * .description ul.products {
    list-style: disc!important; }
 * .description ul li {
    margin: 0 20px 0px 16px!important; }
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566090)
 * Please use [a browser developer tool](http://developers.google.com/chrome-developer-tools/docs/elements)
   to find this stuff out.
 * In Chrome, view your webpage.
    Right click on the text that is not bullet pointed
   and voila, see the CSS that’s applying to it [[screenshot]](http://snag.gy/FMWjp.jpg).
 * You have to use the same or more specific CSS selectors to override styles.
 * So use this;
 *     ```
       .products .right_products ul {
        list-style: circle;
       }
       ```
   
 * Then remove the margin on the `<li>` element;
 *     ```
       .products .right_products ul li {
        margin: 0;
       }
       ```
   
 * These forums are not meant for sole CSS support. You can receive that support
   in CSS forums such as [http://csscreator.com/forum](http://csscreator.com/forum).

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

The topic ‘Bullet Problems’ is closed to new replies.

## Tags

 * [bullets](https://wordpress.org/support/topic-tag/bullets/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 12 replies
 * 4 participants
 * Last reply from: [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * Last activity: [13 years, 2 months ago](https://wordpress.org/support/topic/bullet-problems/#post-3566090)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
