Title: Additional CSS not working?
Last modified: November 17, 2017

---

# Additional CSS not working?

 *  Resolved [gerrymolloy](https://wordpress.org/support/users/gerrymolloy/)
 * (@gerrymolloy)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/additional-css-not-working/)
 * Blog post formatting not appearing
 * The formatting was working fine for dozens of posts, but now when I create a 
   new post the formatting (e.g. Bulleted or Numbered lists) is there in visual 
   editor but does not display when I preview or publish.
 * I am typing in directly, no cut and paste. I am on Windows 10, Chrome, WordPress
   4.8.
    The theme is a child theme of Cherry.
 * What I have in Additional CSS is:
    .panel ul { list-style: disc; }
 * ol {
    list-style: disc; }
 * Thanks, Gerry
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fadditional-css-not-working%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [8 years, 6 months ago](https://wordpress.org/support/topic/additional-css-not-working/#post-9694080)
 * I double-checked and your Additional CSS is working, but some other styles are
   overriding your CSS.
 * Because of this try using more specific CSS selectors, like:
 *     ```
       body ul,
       body ol {
           list-style: disc;
       }
       ```
   
 *  Thread Starter [gerrymolloy](https://wordpress.org/support/users/gerrymolloy/)
 * (@gerrymolloy)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/additional-css-not-working/#post-9694120)
 * So I replaced
 * .panel ul {
    list-style: disc; }
 * ol {
    list-style: disc; }
 * with
 * body ul,
    body ol { list-style: disc; }
 * But its still not working?
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [8 years, 6 months ago](https://wordpress.org/support/topic/additional-css-not-working/#post-9694130)
 * Try this instead:
 *     ```
       body ul,
       body ol {
           list-style: disc;
           list-style-position: inside;
       }
       ```
   
 *  Thread Starter [gerrymolloy](https://wordpress.org/support/users/gerrymolloy/)
 * (@gerrymolloy)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/additional-css-not-working/#post-9694225)
 * Progress!
 * I did 3 lines of both an ordered and unordered list and it worked for the unordered(
   all 6 lines came out as unordered).
 * I then changed both to ordered and it still all came out as unordered.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [8 years, 6 months ago](https://wordpress.org/support/topic/additional-css-not-working/#post-9694385)
 * I misunderstood your intention from the other thread. If you want to use numbered
   list for OL tags and bullet lists for UL tags, try this:
 *     ```
       body ul,
       body ol {
           list-style-position: inside;
       }
   
       body ul {
           list-style-type: disc;
       }
   
       body ol {
           list-style-type: decimal;
       }
       ```
   
 *  Thread Starter [gerrymolloy](https://wordpress.org/support/users/gerrymolloy/)
 * (@gerrymolloy)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/additional-css-not-working/#post-9694431)
 * Thanks Andrew, seems to be sorted!
 * Best regards, Gerry

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

The topic ‘Additional CSS not working?’ is closed to new replies.

## Tags

 * [additional css](https://wordpress.org/support/topic-tag/additional-css/)
 * [formatting](https://wordpress.org/support/topic-tag/formatting/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 6 replies
 * 2 participants
 * Last reply from: [gerrymolloy](https://wordpress.org/support/users/gerrymolloy/)
 * Last activity: [8 years, 6 months ago](https://wordpress.org/support/topic/additional-css-not-working/#post-9694431)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
