Tagged: image with hotspots, tooltips, transparency
Hello there!
I am using an image with hotspots in the homepage of the website I am working on.
I wanted to make the tooltips completely transparent, so I read your answers to similar questions and I pasted this code in the custom css field
.avia-tooltip {
background: rgba(255, 255, 255, 0);
color: rgba(255, 255, 255, 0);
}
But… It doesn’t work. Tooltips are still white. Can you help me please?
Thank you so much!
Hey Akki23,
Could you try it using the !important statement to see if that works?
.avia-tooltip {
background: rgba(255, 255, 255, 0) !important;
color: rgba(255, 255, 255, 0) !important;
}
Thanks,
Rikard
It worked! thank you so much!!!