List Manager Forum

Change color of text balloon when hover 'add' button

Usuario moon_456 2012-05-17 20:53:32

Dear,

is there a way to change the color of the text balloon that show up when you go with your mous pointer over the 'add' button?

I can't find it by myself in the css. Do you have a hint for that?

Kind regards,

Davy Conaert.

Moonsoft support 2012-05-18 10:58:00

Hello,
tooltips are using your template styling by default. If you want to override it at LM, you can add these sections to listmanager css:

For joomla1.5

/* Tooltips */
body .tool-tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 200px;
text-align:left;
}

body .tool-title {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: bold;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
background: url(../../system/images/selector-arrow.png) no-repeat;
}

body .tool-text {
font-size: 100%;
margin: 0;
}



and for joomla 1.6+



body .tip-wrap{
z-index: 10000;
}
body .tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 200px;
}
body .tip-title {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: bold;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
background: url(../images/selector-arrow.png) no-repeat;
}

body .tip-text {
font-size: 100%;
margin: 0;
}

Hope this helps, best regards

Usuario moon_456 2012-05-18 18:33:58

Thank you verry much!

It works for me.

Also thanks for your great and quick support!

Kind Regards,

Davy