thomasmore44
Forum Replies Created
-
Nope. Nothing changed with the update. I’m going to run the other trouble-shooting you recommended on my local installation, but I won’t have time to do so until we’re out on Christmas Break (full-time teacher; part-time webmaster).
Thanks for your attention to this matter!
It is a single calendar (or 3 single calendars), and I can see the time zone is set to GMT -5 (which is Eastern Standard Time, which is what we want).
I’m sorry; I didn’t intend to wreck all your uls! ??
One way to fix this may be to locate the element’s css class or id that needs to be changed. I know you’ve said you’ve poked around, but the right-hand sidebar in developer tools can be immensely helpful for showing all the CSS in play, and the files and line numbers associated with that.
For my theme, it was .sidebar ul etc., but keep perusing the inspector and try different browsers to see what they tell you. Sometimes, things I don’t notice in Chrome’s developer tools pop right out at me when I use Firebug. Same problem–different perspective! Keep up the perseverance, and let me know if you do find a good, workable solution to the problem.
I think you’ll need to make sure that the CSS for your theme isn’t over-riding it. For some reason, it took me forever to find this, but go into your style.css and search “list-style-type: disc”. Once you find that, copy the css into your custom css and replace the disc with none. That way, you’ll for sure override the standard styles for widgets and sidebars.
Here’s what my theme (Molitor) style.css had:
.sidebar ul li.widget ul li { list-style-type: disc; list-style-position: outside; }
I just copied that whole piece and changed the ‘disc’ to ‘none.’ Hope that helps you!