Bullet Point Rendering in Event Description

How can I get bullet points on event descriptions to render properly?

The back-end of the widget looks like this:

But the front-end UI looks like this:

Thank you in advance for your help!

Hi there, @pammy51788 :waving_hand:

This issue occured because of the conflict with the website styles. To fix it, please add the code below to the Custom CSS field on the Style tab of your widget’s settings:

@external {
  .eapp-events-calendar-popup-item-component *:is(ul, li) {
    list-style: unset !important;
  }

  .eapp-events-calendar-popup-item-component *:is(ul, ol) {
    padding-left: 40px !important;
  }
}

Give it a try and let me know if it helped :slightly_smiling_face:

Max, thank you for being the wizard that you are! It worked great. Thank you again!

Thank you so much for you kind words, I am really happy to know it’s fine now!

If any questions come up in the future, I’ll be delighted to help again :blush: