plugin jquery-plugins qtip

jquery-plugins - plugin - tooltip fullcalendar



jQuery, qTip: tooltips font-size: siempre el mismo (3)

Estoy usando qTip jquery-plugin para mis tooltips.

No puedo cambiar el tamaño de letra de la información sobre herramientas. Este es el código ... cualquier número 2..4..8 produce los mismos resultados.

$(''.option img[title]'').qtip({ style: { name: ''light'', border: {width: 0}, title: { ''font-size'': 2 } }, position: { corner: { target: ''topMiddle'', tooltip: ''bottomMiddle'' } } });

Gracias


Intente eliminar las comillas alrededor del tamaño de fuente

style: { name: ''light'', border: {width: 0}, title: { font-size: 2 } }


Lo resolví con CSS:

.qtip-content { font-size:12px; }


Necesita agregar el " px " y puede agregar cualquier css property a su información sobre herramientas, pero debe ponerlo entre comillas.

así que prueba esto (funcionó para mí)

''font-size'' : ''12px''