Thx for the last tip Yigit. I will do some trials later to see the best tooltip I can design.
I really want to thank you Yigit – you and all the rest of the support team.
I just wanted to let you know that your help is extremely valuable to me and probably to many other people who like me are not developers.
With your help I can ‘almost’ manage myself to make a better site using Enfold.
Congrats to all of you.
Hey,
Your text is not wrapped inside Span tags. Please wrap the text you would like to display as tooltip in Span tags as following
<a href="#" class="tip">Link<span>This is the CSS tooltip showing up when you mouse over the link</span></a>
Cheers!
Yigit
Hey sensiblekaren,
Sorry for the late reply, do you mean that you are trying to use the “Image Caption” of each partner to show two lines?

On my localhost I was able to create two lines with this css:
.avia-tooltip.avia-tt .inner_tooltip {
display: table-caption;
text-align: left;
}
what this does is create a new line after each word, so for the name as the first line I used a non-breaking space like this
Miss One CEO


Please note that WordPress will try to strip the non-breaking space each time you edit the element. Unfortunately this element is only meant to show the tooltip as one line.
Best regards,
Mike
Hi,
Sorry for the late reply and thanks for the mockup and link, so for your single posts we will first change the social share buttons into small buttons.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
#top.single-post .av-share-box .avia-related-tooltip,
#top.single-post .av-share-box h5.av-share-link-description.av-no-toc {
display: none !important;
}
#top.single-post .av-share-box {
width: 200px !important;
margin-top: 0 !important;
margin-bottom: 0 !important;
position: absolute;
right: 50px;
}
#top.single-post .av-share-box .av-share-box ul li {
border-left-style: none;
display: inline-block;
}
#top.single-post .av-share-box .av-share-link {
width: 30px!important;
height: 30px!important;
margin: 0 10px 0 0;
}
#top.single-post .av-share-box .av-share-link a {
border:0px solid #000;
padding: 0;
}
#top.single-post .av-share-box .av-share-link a:hover {
background-color: #000!important;
transition: all .35s ease;
}
#top.single-post .av-share-box .av-share-link a:before {
color:#333;
transition: all .5s ease;
}
#top.single-post .av-share-box .av-share-link:hover a:before {
color:#fff;
transition: all .35s ease;
}

Then we will move it to under your featured image, try adding this code to the end of your functions.php file in Appearance > Editor:
function custom_script() { ?>
<script>
(function($) {
$(document).ready(function(){
$('.single-post .av-share-box').detach().insertBefore('.blog-meta');
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'custom_script');

Then clear your browser cache and check.
Best regards,
Mike
How to disable tooltips of title-attributes (in a-, img- and div-tags)? In Safrai (OS X) every Image shows a tootip after hoverig it with teh mouse. Hwo can I disable this?
Cheers from Germany
Tim
Hey,
Please add following line to your content (using Code Block element or text tab on Text Block element) and adjust it as needed
<a href="#" class="tip">Link<span>This is the CSS tooltip showing up when you mouse over the link</span></a>
Then add following code to Enfold theme options > General Styling > Quick CSS field
a.tip {
border-bottom: 1px dashed;
text-decoration: none
}
a.tip:hover {
cursor: help;
position: relative
}
a.tip span {
display: none
}
a.tip:hover span {
border: #c0c0c0 1px dotted;
padding: 5px 20px 5px 5px;
display: block;
z-index: 100;
background: url(../images/status-info.png) #f0f0f0 no-repeat 100% 5%;
left: 0px;
margin: 10px;
width: 250px;
position: absolute;
top: 10px;
text-decoration: none
}
That should be it :)
Best regards,
Yigit
Hello
I was wondering if it was doable to customize the title attribute of a link.
Some plugins call is ‘tooltip’. But they don’t do exactly what I want plus, it gets my site heavier and heavier
Let’s say we have that link: <a title="An awsome theme!" href="https://kriesi.at/themes/enfold-overview/">Enfold</a>
Would it be possible to customize its title:
– BGround color
– text color
– and some other specifications?
I guess it’s possible using CSS but I don’t know where to start.
Would anyone please give me some hints and directions to do so?
-
This topic was modified 5 years, 2 months ago by
rvga. Reason: give more information to my request
Hey,
Thanks for contacting us and sorry for the late reply!
– If you are not using a child theme, please switch to child theme – https://kriesi.at/documentation/enfold/child-theme/
– Add the code posted here in functions.php file of your child theme – https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
– Go to /enfold/config-templatebuilder/avia-shortcodes/team/ and copy team.php file to your child theme inside /shortcode/ folder
– Open team.php file on your child theme and find following line
$output.= "<a rel='v:url' {$tooltip} {$target} class='{$social_class} avia-team-icon ' href='" . esc_url( $social['attr']['link'] ) . "' {$display_char}>";
and change it to following
$output.= "<a aria-label='Here goes your label' rel='v:url' {$tooltip} {$target} class='{$social_class} avia-team-icon ' href='" . esc_url( $social['attr']['link'] ) . "' {$display_char}>";
Best regards,
Yigit
The data-avia-tooltip element that shows an icon to read more when you hover over an image on my site is found within an a tag, which has no text, just an icon. This is throwing an accessibility error in Monsido. How do I add an aria-label within this element? Where can I find the php code that’s spitting this out within my theme folders?
Hi,
How can I adjust the background colour and the font size of a tooltip?
Please advise.
Thanks and regards,
Sandra
Hi Manuela,
Unfortunately, there’s no option to add a tooltip, however, there’s an option to add a caption, and to show it only on hover, would this be an acceptable workaround for you?
Best regards,
Nikko
I have found the source of the problem but not the solution.
I think there is a bug in the content element: “Icon size”.
When I use the content element: “Icon size” and that in the “Grid Element Backside / Tooltip Content” part I put some text in which I put an internet link, the link works well.
https://www.dropbox.com/s/n1cutfm771fedy2/Grid%20Element%20Backside.png?dl=0
https://www.dropbox.com/s/lwds9nyoxrztfs7/internet%20links.png?dl=0
https://www.dropbox.com/s/gya75izz8zluhew/Links%20work%20well.png?dl=0
But when I set the grid design by going to the grid style part and select: “Border between elements” or “all borders”, the links no longer work.
Disign of the grid setings
https://www.dropbox.com/s/622q2zgy6g50dz2/Design%20of%20the%20grid.png?dl=0
Background color part
https://www.dropbox.com/s/gnzh7jhkmjm0i70/Backgroud%20color%20part.png?dl=0
Grid styling part
https://www.dropbox.com/s/v0ojbkcsf2ke14d/Grid%20styling%20part.png?dl=0
Borders choises
https://www.dropbox.com/s/u526xiv8fxq16xm/Borders%20choices.png?dl=0
Links no longer work
https://www.dropbox.com/s/2vxa1ras961fajb/Links%20no%20longer%20work.png?dl=0
So, for my design, I would like to use the “All border” settings
Can you help me please.
Hi,
Sorry for the late reply and thanks for the link to your page, to hide the tool tip popup, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
.avia-related-tooltip.avia-tt {
opacity: 0 !important;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi,
how do I add a tooltip above the image of Elena (see page https://leagrowingpeople.com/services/pilates/#book)
Thanks for your continued support,
Manuela
Dear Victoria,
the code worked for the enlarged pictures, but is there any chance to also hide the mouseover “tooltip” style title at the masonry gallery itself?
Thank you for assistance,
b.r.
Conny
Hey studiovene,
Please try the following in Quick CSS under Enfold->General Styling:
.avia-icongrid-tooltip li article:before {
padding-top: 50%;
}
Best regards,
Rikard
Hi there, there seems to be a problem with padding on the tooltip:
https://vitalis.tinytake.com/media/e3ebf0?filename=1602554021216_TinyTake10-10-2020-01-49-06_637378877603992992_1602554021.png&sub_type=thumbnail_preview&type=attachment&width=100&height=120
This seems to be created by inline SCC in the html
<div class=”gm-style-iw gm-style-iw-c” style=”padding-right: 0px; padding-bottom: 0px; max-width: 549px; max-height: 419px; min-width: 0px;”>
How do I fix this?
Many thanks!
Hello,
I am aware that I can make the messages of the tooltips show up below the image for smaller devices but the white box the message shows up in is too wide/large. Anyway to make it fit better?
Here is a screenshot of how it looks.

HI,
I have a map on my contact page made with the google map element, and one in the footer made with the enfold google map widget, but they look different. Can I get the look of the map on the contact page in the footer map?
I tried putting this code in in an html block in the footer, which was the right map but it went full width and broke the footer:
[av_google_map zoom_control='aviaTBzoom_control' maptype_control='' zoom='15' maptype_id='' height='2.5:1' saturation='-50' hue='' google_link='' confirm_button='Click to load Google Maps' page_link_text='Open Google Maps in a new window' google_fallback='' attachment='' attachment_size='' av-small-hide='aviaTBav-small-hide' av-mini-hide='aviaTBav-mini-hide' id='' custom_class='' av_uid='av-spxu7q']
[av_gmap_location address='Sundevedsgade 2' city='copenhagen' country='denmark' long='12.543785999999955' lat='55.6708671' tooltip_display='aviaTBaviaTBtooltip_display' marker='2111' imagesize='40' av_uid='av-2t1ipy']
Joshua Tree Photography v/ Fotograf Joshua Gross
Sundevedsgade 2, 1tv
1751 København V
[/av_gmap_location]
[/av_google_map]
Can you help me fix this so it will fit in the footer column, or change the stying of the footer widget map?
thanks
Nancy
Hi,
Thank you for following up.
You might be looking on a cached version of the page with the old script. Please try to purge the plugin cache and remove the browser history, then check the page again.
You might also have to adjust the hard coded height value in the js > avia.js, line 1619.
default: pos1 = (offset.top + (element.outerHeight() / 2)) - (350 / 2); break;
Replace 350 with a lower value to move the tooltip upwards.
Best regards,
Ismael
Hi Ismael,
There is no other login url than the one I gave you. I tried to login with the details I gave you and was able to login.
I checked to make sure that the css selector corresponds to the class attribute of the element that has to be hidden. That was the case. The strange thing is that it does work for the Button Tooltip and for the Tab Label bit not for the Tab Content. If you check the site in EN and NL you can see that the first tab
<span class="nl-cookie">Ja wij gebruiken cookies!</span> <span class="eng-cookie">Yes we use cookies!</span>
is showing the correct label, however the content is shown in both NL and EN (I will shortly leave it there for you to verify.
Please advise.
Best regards,
Monique
Hi,
Thank you for info.
The alignment issue occurs because the script fails to get the actual height of the tooltip — the height value is always set to 0. To fix the issue temporarily, we modified the js > avia.js file and around line 1619, we hard-coded the height value.
default: pos1 = (offset.top + (element.outerHeight() / 2)) - (350 / 2); break;
We will forward this thread to our channel so that we could provide a fix in the next patch.
Best regards,
Ismael
Hi Enfold,
Would you please help me on how I would setup the Contact Form so that extra text boxes appear ONLY when certain Topics are selected in the dropdown box? This is in the CONTACT PAGE.
So when the Topic dropdown: REFUND is selected, I want my Element: ORDER NUMBER to appear. I don’t want ORDER NUMBER element there for every scenario. Is this possible?
If not possible, can a handy tooltip pop up be possible when certain Topics are selected?
Thanks
RZURXN
Hi Ismael,
thanks for your answer.
No, it doesn´t work correctly on point 1, too. This tooltip is without picture :-( Please have a look on the site.
Thanks
Tobias
Hey Tobias,
Thank you for the inquiry.
The vertical position of the tooltip is probably off because it contains images. For some reason, the space taken by images are not taken into consideration when calculating the top position of the tooltip. Does it work correctly when the images are removed?
Best regards,
Ismael
Thank you that did hide the tooltip!
Hi Support,
the tooltip alignment on our site no longer works. .av-tt-pos-left .av-tt-align-centered is not on the right place. Changing the tooltip position does not change the layout.
We have already deactivated all plugins, but it is still displayed incorrectly.
Is this due to the update to WordPress 5.5?
Thanks for your support.
Best regards
Tobias
Hi Anna,
Can you try adding this code in QUick CSS, located in Enfold > General Styling? (this is to hide the tooltip)
#top .avia-google-maps .gm-style-iw-t {
display: none !important;
}
Best regards,
Nikko
Hey Katroaka,
To change the hotspot tool tip to transparent with red text please try this css:
#wrap_all #main .av-display-hotspot .av-permanent-tooltip-single,
#wrap_all #main .avia-arrow {
background-color: rgba(255, 255, 255, 0) !important;
}
#wrap_all #main .av-display-hotspot .inner_tooltip p {
color: red !important;
}
#wrap_all #main .avia-tooltip.av-tooltip-shadow,
#wrap_all #main .avia-tooltip.av-tooltip-shadow .avia-arrow {
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0) !important;
}
Expected results:

Please note that I used red text in this example so you could see the text in the screenshot, if your site or image is dark you can change the color to white, as in your request.
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hello there!
So here’s what I’d need:
I’d like the Toolpits to be transparent but the font should be white.
I’ve tried this code:
.avia-tooltip {
background: rgba(255, 255, 255, 0);
color: rgba(255, 255, 255, 0);
}
However, the result ist that a strange white arrow is showing up on the right side of the Hotspot permanently and no Text is visible at all. The arrow should be gone and the Text should be displayed in a white color.
Could you please be so kind and help me out with the code? Also, how can I add a button on the picture as well? I’d need a transparent button with frame on it.
Thank you in advance for your help