A Few Questions!

Long time no see! Happy to see you back again, @Sydney_Jones :blush:

  1. At the moment, unfortunately, attached files can be displayed in the popup only. However, I agree that it would be nice to show them in the event cards too. I’ve added this idea to the Wishlist on your behalf - Display attachments in the event cards

  2. The event elements are aligned to the left by default in the event cards. Could you please send me a link to the page with the widget from your 2nd screenshot, or just specify its ID?

  3. CSS code to align the PDF Embed title to the center:

.eapp-pdf-embed-title-component {
  text-align: center;
}
  1. CSS code to change the size of the icon and pdf file name:
.eapp-pdf-embed-item-icon {
  width: 50px;
  height: 70px
}

.eapp-pdf-embed-item-name {
  font-size: 25px;
}
  1. To open files in the same tab, please add this script to the Custom JS field on the Appearance tab of your widget’s settings:
document.addEventListener("click", (event) => {
  const anchor = event.target.closest(".eapp-pdf-embed-item-linkWrapper");
  if (!anchor) {
    return;
  }

  event.preventDefault();
  window.open(anchor.href, "_self");
}, {
  capture: true
});
  1. Your Event Calendar widget is now a part of the new subscription. Thus, you don’t have to create a new widget for this :slightly_smiling_face:
2 Likes