I would like to remove the tooltip from gallery thumbnails WITHOUT removing the lightbox caption or removing tooltips from the entire site. I added the ID #galleryt and tried using display:none on #galleryt div.avia-tooltip.avia-tt but no luck. Can you help me determine what element to apply the display:none to or another method. Thank you!
Example page: http://chrisgallop.com/blog/portfolio-item/kitchen-upgrade/
Hi Rachel!
Thank you for using Enfold.
Please add this in the Quick CSS field:
body .avia-tooltip {
display: none !important;
}
Cheers!
Ismael
Thank you BUT this removes all tooltips site-wide. I only want it removed from portfolio gallery items. I set the ID #galleryt to the Color Section the gallery is in, if that will help?
Thank you!
Hi!
Replace the code with this:
.single-portfolio .avia-tooltip {
display: none !important;
}
This code will affect all portfolio pages.
Regards,
Ismael
This worked, thank you!!