Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set jqueryui tooltip tip font size

Sample tooltip at jqueryui.com/tooltip/ displays the tooltip itself ("That's what this widget is") on hover with a small font size.

their tooltip

I cannot duplicate that font size. When I try to match their sample, the tip displays with a larger font.

my tooltip

I downloaded and applied the style.css file used in their sample. The font size spec must be buried there; but I cannot find it.

(Maybe the solution lies in building a custom theme, though I am using their style.css file. That would seem to be way too complicated for what I want to do.)

What am I missing?

Thanks.

like image 578
user1852336 Avatar asked Jan 28 '15 20:01

user1852336


1 Answers

this worked for me:

.ui-tooltip-content {
    font-size:10pt;
    font-family:Calibri;
}
like image 53
apapa Avatar answered Nov 04 '22 06:11

apapa