I created a tooltip using Twitter Bootstrap.
The tooltip is displaying with three lines. However, I would like to display the tooltip with only one line.
How
Just override bootstrap.css
The default value in BS2 is max-width:200px; So you can increase it with whatever fits your needs.
.tooltip-inner { max-width: 350px; /* If max-width does not work, try using width instead */ width: 350px; }