Hello,
I’ve read a few of the other posts regarding this but I’m still having trouble. I’m wanting to fix up the left margin issue in the widget. This is the code I’m using:
.widget.tribe-events-adv-list-widget ol { margin-left: 0; }
I’ve added this code to my theme’s (Avada) custom css, it didn’t work. I’ve also created the file avada/tribe-events/pro/tribe-events-pro.css…didn’t work.
@resonantimagery: I’ve learned that you must increase the specificity for your CSS in order to override the tribe styles. I’d be happy to point you in a more *specific* (horrible pun intended) direction if you’ll provide me with a link to a page that contains this widget.
try this:
#sidebar > .tribe-events-adv-list-widget ol { padding-left:0; }
I am assuming, of course, you’re referring to the indention on the list items? That space is actually created in your case with padding and not a margin. So your CSS would work, too, if you changed it to padding-left instead of margin-left. My solution should work, too.