0

As per some other SO answers I'm using qtip2 to format my tooltips as this is impossible in CSS.

My goal is to make the tooltip larger.

The basic example for qTip is in this fiddle: essentially,

$('a[title]').qtip()

. What do I need to add to this to increase the font size?

Community
  • 1
  • 1
isomorphismes
  • 8,233
  • 9
  • 59
  • 70

1 Answers1

1

Just add a css class for .qtip

.qtip{
    font-size: 18px;   
}

FIDDLE

Jmh2013
  • 2,625
  • 2
  • 26
  • 42