I'm using this plugin: http://onehackoranother.com/projects/jquery/tipsy/#options
Is there a way (preferably via CSS or else via jQuery) to set the width of the the popup bubble?
I'm applying tipsy on a link like so:
$('#linktip').tipsy({ html: true, opacity: 1.0 });
<a href="" id="linktip" class="help" original-title='<asp:Literal ID="Literalfd19" Text="<%$Resources:pastelink %>" runat="server"/>'><i class="fa fa-info-circle fa-lg"></i></a>
open tipsy.css and you will see line
.tipsy-inner { padding: 5px 8px 4px 8px; background-color: black; color: white; max-width: 200px; text-align: center; }
See there is a max-width
which set to 200px