Reputation: 1349
I have tried using the example code that is provided by the Twitter Bootstrap docs,
<a href="#" data-toggle="tooltip" title="first tooltip">Hover over me</a>
and although I do get the hover over effect, it doesn't look like the pretty version that bootstrap provides. I have tried looking this up in Google and Stack Overflow, but most of them offer solutions on how to customize the look of the tooltip. I would just like to use the default look bootstrap provides.
Any thoughts on why mine may be looking like the screenshot below?
Upvotes: 1
Views: 269
Reputation: 608
Upvotes: 1
Reputation: 119
also make sure you are adding the correct bootstrap css and javascript seems like either you don't have them or their path is wrong
Upvotes: 0
Reputation: 1778
Use this. Also check using inspect element that your customised classes are not overriding the default CSS.
<a class="btn btn-default" data-toggle="tooltip" data-placement="left" title="first tooltip" data-original-title="first tooltip">Hover over me</a>
Upvotes: 0