Problem: I have added some custom CSS to a Content Template, but none of it appears to be working.
Solution: In this case it looks like the bullet character octal string code is causing problems in the browser, so the CSS chunk cannot be inserted in the head of the document. Replace the octal string with the bullet character itself. Problem code:
.entry-content ul li::before { content: "\2022"; /*Add content: \2022 is the CSS Code/unicode for a bullet */ ...
Solution:
.entry-content ul li::before { content: "•" ...
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | - | - |
13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | - | - |
Supporter timezone: America/New_York (GMT-04:00)
This topic contains 5 replies, has 2 voices.
Last updated by 4 years, 5 months ago.
Assisted by: Christian Cox.