Your theme styles all list items in widgets that way; you’d need to make an exception for My Calendar.
The styles are on line 2835 of your theme’s style.css stylesheet; you can override by adding custom CSS (Appearance > Customize > Additional Styles) like so:
.widget .upcoming-events ul li:after {
content: '';
}
Thanks Joe!
Somehow overriding the styles.css does not work, is there a specific place on the custom CSS where I should insert this line?
brad
Ah, solved!
Seems the “.upcoming-events”-specifier didn’t work.
Insert this line:
.widget ul li:after {
display: none;
}
Now it’s fine 🙂
Thanks again.
brad
I was specifying something that would only apply to that one list; but I may have gotten the selector wrong. But if you’re good with applying it to all lists, then you’re good to go!