Tooltip - no class definition in the template

Rate this topic: Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.Evaluations: 2, 3.50 on the average.3.50 out of 6 based on 2 vote(s)
GK User
Mon Feb 09, 2015 4:18 pm
Reply with quote
Report this post
Hi I have installed two components. The tooltips are not visible in the template. The class is not defined. Can you please help? :?

Just as the calendar icon. Default in Joomla. Is not visible in the template. The popup calendar is not to see properly. Can you please help? :?:

I'll send you about privately a link!

Thank you Ilona
User avatar
Expert Boarder

teitbite
Tue Feb 10, 2015 9:42 pm
Reply with quote
Report this post
Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it? It is a lot easier for us to diagnose issues when we have a live site to examine.
User avatar
Moderator

teitbite
Wed Feb 11, 2015 5:35 pm
Reply with quote
Report this post
Hi

To fix calendar add this to override.css and make sure override is enabled in template settings:

Code: Select all
.calendar td.button {
    display: table-cell;
    float: none;
}


but tooltip i just empty that's why it's not showing. What should be displayed there ?
User avatar
Moderator

GK User
Thu Feb 12, 2015 7:32 am
Reply with quote
Report this post
Hello thank you. I have everything entered in the override. The Kalendericon is not yet visible. But the calendar is now displayed correctly. Can you look again, why the icon is not displayed.

The tooltip an image to display. I have seen the text can be seen at another link. Do I need to write something in the override so that the image is displayed?

Many thanks for the quick response. Ilona
User avatar
Expert Boarder

teitbite
Fri Feb 13, 2015 10:27 pm
Reply with quote
Report this post
Hi

There is no style for icon at all. Are You sure the css from this component is used ? It may also affect tooltip since there is no errors in console.
User avatar
Moderator

GK User
Wed Feb 18, 2015 3:21 pm
Reply with quote
Report this post
Hello, we have found the error. The z-index has been too low. In the joomla.css and template.css. Here is the code:

Code: Select all
gkContent, #gkPageContent{z-index: 100;}
.tooltip{z-index: 100;}


Unfortunately we have with the calendar icon not found the problem. Do you happen to have another idea? Many Thanks. Ilona
User avatar
Expert Boarder

teitbite
Thu Feb 19, 2015 4:45 pm
Reply with quote
Report this post
Hi

None of the css file has a style for this icon or an image loaded for it. I think not all style files are loaded in component or maybe it's based on some 3rd party library as bootstrap or something. Try rewrite this class into font awsome. Add this code to /layout/blocks/head.php

Code: Select all
<script type="text/javascript">(function($) {$(document).ready(function() {
$('.icon-calendar').each(function(){
$(this).addClass('fa').addClass('fa-calendar');
});
});})(jQuery)</script>
User avatar
Moderator

GK User
Wed Feb 25, 2015 9:46 am
Reply with quote
Report this post
Thank you - worked :lol:
User avatar
Expert Boarder


cron