You do not need to modify the script. You do need a basic knowledge of css style. In the stylesheet, you see the balloonstyle class defined:
Code:
.balloonstyle{
position:absolute;
top: -500px;
left: 0;
padding: 5px;
visibility: hidden;
border:1px solid black;
font:normal 12px Verdana;
line-height: 18px;
z-index: 100;
background-color: white;
width: 200px;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135,Strength=5);
}
You may also (later on in the same stylesheet) define each individual tip by using its id, example for balloon1:
Code:
#balloon1 {
color:white;
background-color: black;
}
This will add to and/or change the styles provided for it by its class name. For more on css style see:
http://www.blooberry.com/indexdot/css/propindex/all.htm
or your favorite css reference.
Bookmarks