You would put the font and font color, plus border color, in the css that goes in the head. Add/change the part in red, just replacing with whatever color you want:
Code:
#dhtmltooltip{
position: absolute;
width: 150px;
border: 2px solid red;
padding: 2px;
background-color: lightyellow;
visibility: hidden;
font-family: arial;
color: red;
z-index: 100;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
}
Bookmarks