There is now. Thanks for the suggestion.
I've added a class called "tooltip_popup", so you can reference that tooltip with:
div.tooltip_popup{
}
Make SURE to use
!important for those attributes that need overwriting.
For example to change the color to purple on green:
- div.tooltip_popup{
- color:purple !important;
- background:green !important;
- }
div.tooltip_popup{
color:purple !important;
background:green !important;
}
The
!importants will override the embedded style in the HTML.