gerrymolloy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Additional CSS not working?Thanks Andrew, seems to be sorted!
Best regards, Gerry
Forum: Fixing WordPress
In reply to: Additional CSS not working?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.
Forum: Fixing WordPress
In reply to: Additional CSS not working?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?
Forum: Fixing WordPress
In reply to: Text formatting not workingHave done thanks @anevins lets see what comes back
Thanks, Gerry
Forum: Fixing WordPress
In reply to: Text formatting not workingOK 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
Forum: Fixing WordPress
In reply to: Text formatting not workingBlog 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, GerryPS
Additional CSS
@anevins Tried your suggestion above re additional css with no successI 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;