I want to customize the background, and the color of the tooltip on one single color section.
Wich CSS rules do i need? the section id is “arbeitsweise”
I’ve tried this:
#arbeitsweise .avia-tooltip, #arbeitsweise .avia-tooltip .avia-arrow-wrap .avia-arrow{
background: rgba(255, 255, 255, 0.9)!important;
color:#999999!important;
}
But it does not work … Any idea?
Hey Mario!
That code doesn’t work because the tooltips appear at the very end of the markup (outside the color section), you should use this code:
.avia-tooltip, .avia-arrow-wrap .avia-arrow{
background: rgba(255, 255, 255, 0.9)!important;
color:#999999!important;
}
Best regards,
Josue
hmm …. pero eso es para todos …. right?
I need only for one color-section a different tooltip color Josue.
Seems there is no chance to change it, right?
Sip, lo único que podrías hacer es limitar la aplicación del código por pagina (page-id-xx).
El código del tooltip esta en:
/config-templatebuilder/avia-template-builder/assets/js/avia-tooltip.js
Gracias :-)