(Squarespace) How to remove bottom links in Event Detail

To remove bottom links in Event Detail.

You can use this code to Custom CSS.
If it doesn’t work, you can email or message me.

section.item-pagination[data-collection-type^="events"] {
    display: none;
}

To make it hide on Mobile only, use this CSS code.

@media screen and (max-width:767px) {
  section.item-pagination[data-collection-type^="events"] {
    display: none;
  }}