Hello All,
I need to make tooltip background to semitransparent for that i have created the custom theme file and changed the
div.radtooltip_Default table.ToolTipWrapper td
{
padding: 0; margin: 0;
border-collapse: collapse;
background-color:Gray;
filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;
}
By this it will make the background to semitransparent but the text of tooltip is also transrarent.
Now i needs to make the background to transparent but the text should be dark same as if without opacity changed.
i have also tried with
div.radtooltip_Default
{
position: absolute;
cursor: default;
border: solid 1px #383838;
background-color:Gray;
filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;
}
so what portion of the css i need to change
Thanks
I need to make tooltip background to semitransparent for that i have created the custom theme file and changed the
div.radtooltip_Default table.ToolTipWrapper td
{
padding: 0; margin: 0;
border-collapse: collapse;
background-color:Gray;
filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;
}
By this it will make the background to semitransparent but the text of tooltip is also transrarent.
Now i needs to make the background to transparent but the text should be dark same as if without opacity changed.
i have also tried with
div.radtooltip_Default
{
position: absolute;
cursor: default;
border: solid 1px #383838;
background-color:Gray;
filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;
}
so what portion of the css i need to change
Thanks