Page 1 of 1

Increase default font size

Posted: 2019-04-29 18:24
by D Oliveira
How to increase default font size?

Thank you.

Re: Increase default font size

Posted: 2019-04-29 20:28
by pbottcher
Hi,

you can try this:

Code: Select all

var selector_resize = new Array('*','.resizable');
selector_resize = selector_resize.join(',');
$j(selector_resize).css('font-size', newFontSize);

Re: Increase default font size

Posted: 2019-05-15 15:34
by D Oliveira
pböttcher wrote:
2019-04-29 20:28
Hi,

you can try this:

Code: Select all

var selector_resize = new Array('*','.resizable');
selector_resize = selector_resize.join(',');
$j(selector_resize).css('font-size', newFontSize);
Thank you, that worked.

Re: Increase default font size

Posted: 2019-07-29 18:05
by rpierce
Where do you put this code??