bluebonnet Posted June 4, 2023 Posted June 4, 2023 Hey there, Ive looked all around and I keep seeing old posts about this. I need to remove all the times from calendar page for every event. Is there code that will hide all of the current and future events? Thanks in advance
iamdavehart Posted June 4, 2023 Posted June 4, 2023 you're on a 7 template, so the following css code will hide the times span.item-time { display:none !important; } if you want to hide them on the flyout/hover effects then add this div.flyoutitem-datetime { display:none !important; } if you only want it to happen on this page (because you've got another events calendar somewhere else then you should prefix the rules with your collection id (you can use the squarespace id finder extension for this kind of thing) body#collection-5a68ea09ec212dd1049bcecb span.item-time { display:none !important; } body#collection-5a68ea09ec212dd1049bcecb div.flyoutitem-datetime { display:none !important; } tuanphan and Liza 2 Dave Hart. Software/Technology Consultant living in London. buymeacoffee
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment