I am using the title property of the anchor tag to display text when a user hovers their mouse over a link.
Is there anyway to control this popup using style sheets or some other method?
Is it possible to force the text not to wrap? Or set the width of this popup?

VB Code:
  1. <a href="www.google.com/" title="I do not want this text to wrap. I do not want this text to wrap. I do not want this text to wrap. I do not want this text to wrap.
  2. I don't want this text to wrap. I don't want this text to wrap. I don't want this text to wrap. I don't want this text to wrap.
  3. The same goes for this line of text.  The same goes for this line of text.  The same goes for this line of text.  The same goes for this line of text.">link</a>

If I have a line that contains no spaces this popup does not wrap, but I would like to not have to do this (see below)
VB Code:
  1. <a href="www.google.com/" title="--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  2. I do not want this text to wrap. I do not want this text to wrap. I do not want this text to wrap. I do not want this text to wrap.
  3. I don't want this text to wrap. I don't want this text to wrap. I don't want this text to wrap. I don't want this text to wrap.
  4. The same goes for this line of text.  The same goes for this line of text.  The same goes for this line of text.  The same goes for this line of text.">link</a>

Thanks,
AndyL