• Resolved maximed68

    (@maximed68)


    Hello,
    I have a problem with the maps.
    In the editor, all is fine, when I pass my mouse over a country, the tooltip is showing correctly.
    But when I go to the website itself, when I pass my mouse over a country, I only get an empty bubble with no text !
    I tried to change the font, desactivate all my extensions but no result.

    Thanks for help,

    Maxime

    • This topic was modified 4 years, 4 months ago by maximed68.

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor Carlos Moreira

    (@carlosmoreirapt)

    Hi @maximed68
    Seems there’s some kind of conflict with your theme styles, which is making the content of the tooltip 0px height.
    Add this to the custom css of your site:

    .imapsLabel foreignObject > div {
    	box-sizing: content-box;
    	min-height: 20px;
    	padding-top: 10px;
    }

    This should solve the problem.
    Greetings, Carlos

    Thread Starter maximed68

    (@maximed68)

    Thanks for answering !
    Pasted that in my theme additional CSS ans sadly had no effect…
    My theme is SALIENT.

    Hope you have another clue ^^

    Best regards
    Maxime

    Plugin Contributor Carlos Moreira

    (@carlosmoreirapt)

    Try adding it to the custom css field in the customizer.
    Also, try to add the !important tag:

    .imapsLabel foreignObject > div {
    	min-height: 20px !important;
    	padding-top: 10px !important;
    }
    Thread Starter maximed68

    (@maximed68)

    It’s really not working i’m so sad…
    Love your plugin

    Plugin Contributor Carlos Moreira

    (@carlosmoreirapt)

    I visited the page and I see the css code is there but it’s broken.
    Most likely the copy/paste you’re doing is breaking it. The > sign is being converted to its html entity.
    Double check this and write it by hand to check if the correct value remains.
    If it still doesn’t work, remove the > sign, it will probably still work.

    Thread Starter maximed68

    (@maximed68)

    Just removed the > sign and it works !!!!
    Big thanks !

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Tooltips displayed but w/o text’ is closed to new replies.