I’m trying to remove the previous and next post “hover” links that show up on the left and right side of the screen, but only on Event Calendar Plugin events (aka posts).
I tried this:
#top.single-tribe_events .avia-post-nav .entry-info-wrap {
display: none;
}
Is there something else I should be trying?
Hey!
Try
#top.single-tribe_events .avia-post-nav {
display: none !important;
}
Best regards,
Peter
Hi and thank you. I tried that and I had no luck. Here is a link to one of the event pages http://millcreekmetro.wpengine.com/event/breakfast-botany-maple/
(hosted on WPengine) />
I put that code in the custom css. Do I need to manually put this in a different .css file for it to work?
Thanks,
Jeff
Hey,
Please use this:
.single-tribe_events .avia-post-nav {
display: none !important;
opacity: 0;
}
Regards,
Ismael
Hi All,
Peter’s suggestion does work. Rechecked my css and I was forgetting a closing bracket earlier in the code. All good now. Thanks!
Glad we could help.
Regards,
Josue