Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #506855

    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!

    #506944

    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

    #507268

    It worked! thank you so much!!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Transparent Tooltip – CSS editing doesn't work’ is closed to new replies.