A while ago I requested a piece of code to remove the bullets from the upcoming events widget, which Tony kindly gave me.
Unfortunately, I deleted the widget and added it again this morning, and now / despite the code still being in the additional CSS field on my template, the bullets are back!
I have tried deleting the code and adding it again, but to no avail.
The reason the code has stopped working is that the CSS I gave you used the ID to select that specific event widget. Now you have a ‘new’ widget the ID has changed.
So the previous code was this:
#events-widget-3 ol {
list-style: none;
padding: 0;
}
You can either, just change the ID selector to match your new one:
#events-widget-4 ol {
list-style: none;
padding: 0;
}
Or, to target any instance of the events widget (in-case you change it again) use this code:
.footer-widget-col.events ol {
list-style: none;
padding: 0;
}
Viewing 2 reply threads
The support post ‘Upcoming Events Widget PROBLEM – Bullets Are BACK!’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.