Reputation: 3960
By default the arrow is aligned vertically 50% of the .tooltip-inner
height or from the element to the top of the window:
But what I really want to do is having the arrow around 20px to the top of the .tooltip-inner
class or tooltip's content
:
I guess it can't be done with .css because the height of the tooltip content is calculated dynamically by javascript. Any help on this? Thanks. JSFIDDLE
Upvotes: 0
Views: 479
Reputation: 18734
setting margin on top will also work:
.tooltip-arrow{margin-top:-13px}
.tooltip-inner{margin-top: 65px}
no !important required
Upvotes: 2