Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
In the “Additional CSS” part of the dashboard, add this:
.panel ul {
list-style: disc;
}
https://codex.ww.wp.xz.cn/CSS#Custom_CSS_in_WordPress
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.
This is a sample
https://www.woofadvisor.com/blog/formatting-test/
Thanks, Gerry
PS
Additional CSS
@anevins Tried your suggestion above re additional css with no success
I had previously added this to Appearance – Customize – Additional CSS
}
.entry li { list-style-position: outside; }
.panel ul {
list-style: disc;
}
I then replaced it with
.panel ul {
list-style: disc;
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
@gerrymolloy, You’re not using an unordered list (<ul>), you’re using an ordered list (<ol>). You need to update your CSS in relation to that, for example use:
ol {
list-style: disc;
}
OK thanks @anevins
So what I have in Additional CSS now is:
.panel ul {
list-style: disc;
}
ol {
list-style: disc;
}
I just created a new post based on this and the formatting is still missing
https://www.woofadvisor.com/blog/formatting-test/
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
I don’t think your “Additional CSS” part of the dashboard is working. Can you open a new thread to discuss this? https://ww.wp.xz.cn/support/forum/how-to-and-troubleshooting/#new-post
Have done thanks @anevins lets see what comes back
Thanks, Gerry