Tooltips disappear with Bootstrap 3 in Joomla 3.2.2

I use Joomla 3.2.2 and in my Bootstrap 3.1.1 template. If I go with the mouse over the tooltip, it will disappear. This happens, for example, in the registration form. With Joomla 3.2.1, this worked. Does anyone know about this issue? How can i solve this?

+4
source share
5 answers

Ok, with the following css code, I could temporarily fix the problem. Write this code in your own template.

label
{
    display : inline !important;
}

The problem is that hover over the label in the following code ...

display : none;

Is this bootstrap 3 error?

+2
source

Joomla 3.2.3 , .

0

Bootstrap 3, Joomla 3.2.x

To prove this, I removed the bootstrap script boot code from my site and the tooltip remains (along with the tags).

0
source

A bit late, but actually a problem with Mootools. If you understand this, this will only happen if you have Joomla Mootools loaded on pages where the help items disappear. The fix is ​​simple:

    jQuery(document).ready(function($) {
        $('.hasTooltip').each(function(){this.show = null; this.hide = null;});
    });
0
source

Also add

.hasTooltip {
    display: inline !important;
}

into your css template file.

-1
source

Source: https://habr.com/ru/post/1530254/


All Articles