I am referring answers of this question to customize tool tip div styles but not getting it done. Here is my CSS:
<style type="text/css">
.ttExtra
{
background-color: Black !important;
color:Red !important;
}
</style>
and jQuery:
<script type="text/javascript">
$('.userdetails').tooltip({
tooltipSourceID: '#userprofile',
loader: 1,
//loaderImagePath: 'animationProcessing.gif',
//loaderHeight: 16,
//loaderWidth: 17,
width: '400px',
height: '200px',
tooltipSource: 'inline',
borderSize: '2',
borderColor :'#000000',
tooltipBGColor: '#efefef',
tooltipClass: 'ttExtra'
});
</script>
I can't see the styles to my tooltip what I mentioned in css class. What must be wrong here?
Thanks.