tooltip


Author Message
ZeuS

Posted: 3/15/2012
Quote message 

Where can i find the tool-tip css settings in my template css?
I am using the newest artisteer
and somehow my tooltip background is transparent
 
agoodtech

Posted: 5/17/2012
Quote message 

This is very frusterating and I have looked everywhere on google and this forum and found nothing!!!!!!!!!

The one thing that I did notice is that not all of the templates built do this, I just can't seem to figure out what setting it is that triggers this to happen.

I am using Artisteer 3.1 and making templates for joomla 1.5

The problem one more time is that the tooltip pop up when hovering over the edit article icon has no background or outline, so it is like text over text and is not readable. I know it is an Artisteer issue, I install another theme and it had pop ups that where perfect.
 
lloydml

Posted: 5/21/2012
Quote message 

Same problem here. Searching but getting nowhere
 
Garry

Posted: 5/25/2012
Quote message 

Suggestions from following threads may be helpful:

http://www.artisteer.com/?post_id=124483&p=forum_post&forum_id=20
http://www.artisteer.com/?post_id=182149&p=forum_post&topicsPage=2&forum_id=20
 
FoTo50

Posted: 8/5/2013
Quote message 

You can add definitions manually in template.css, but this depends on your Joomla version

Lets say, you want to have black background:

If you use 2.5.x
div.tip-wrap { background:#000; }

If you use 3.x
div.tooltip { background:#000; }


Hopefully this helps :)

Greetz FoTo50
 
Klaus

Posted: 12/3/2013
Quote message 

Didn't helped me (J 3.1.5 / Artisteer 4.1.0.59861), didn't think it was Artisteer because the color was already set to #000. My solution was an override at the End of the template.css:

div.tooltip
{
display: none !important;
}

detailed Infos (German): http://moses-evidence.blogspot.co.at/2013/12/verstecken-der-tooltips-in-joomla-315.html
 
erwin

Posted: 11/21/2015
Quote message 

worked perfectly! thanks for the tip!