This is an error in your template.
Looking at your CSS I see tooltip classes in the
yourchurchontheweb.com/demo/plugins/syst...jceutilities-220.css
This tooltip classes may be correct for tooltips created by JCE utilities (if this exists), but they're not correct for tooltips created by Joomla itself.
The correct classes would be:
- tool-tip for the tip as a whole (background, border, ...)
- tool-text for the text inside the tip
- tool-title for the title of the tip
Easiest fix would be to just add those classes to your existing definitions.
Before:
Code:
div.tooltip {
background-color: #FFFFFF;
border: 1px solid black;
color: #000000;
padding: 4px;
text-align: left;
width: 180px;
z-index: 10;
}
div.tooltip h4 {
font-size: 11px;
font-weight: bold;
margin: 0;
}
div.tooltip p {
font-size: 11px;
}
After:
Code:
div.tooltip, .tool-tip {
background-color: #FFFFFF;
border: 1px solid black;
color: #000000;
padding: 4px;
text-align: left;
width: 180px;
z-index: 10;
}
div.tooltip h4, .tool-title {
font-size: 11px;
font-weight: bold;
margin: 0;
}
div.tooltip p, .tool-text {
font-size: 11px;
}